2
0
mirror of synced 2025-01-09 16:15:51 +00:00

11 lines
290 B
C#
Raw Normal View History

2023-10-31 11:22:59 +01:00
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";
}
}