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