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