2
0
mirror of synced 2025-01-11 00:56:05 +00:00
2023-10-31 11:22:59 +01:00

11 lines
290 B
C#

using ArgsUniform;
namespace TestClusterStarter
{
public class Configuration
{
[Uniform("kube-config", "kc", "KUBECONFIG", true, "Path to Kubeconfig file. Use 'null' (default) to use local cluster.")]
public string KubeConfigFile { get; set; } = "null";
}
}