A simple .NET library that embeds the Kubeconform CLI.
- .NET 9.0 or later
- Kubeconform CLI installed and available in your system's PATH
To get started, you can install the package from NuGet.
dotnet add package DevantlerTech.KubeconformCLI
You can execute the Kubeconform CLI commands using the Kubeconform
class.
using DevantlerTech.KubeconformCLI;
var (exitCode, output) = await Kubeconform.RunAsync(["arg1", "arg2"]);