You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varnameOption=newOption<string>("--Name"){DefaultValueFactory= _ =>Defaults.ClusterName,Description="The name of the kind cluster to create."};
49
+
nameOption.Aliases.Add("-n");
50
+
varcontrolNodes=newOption<int>("--ControlPlaneNodes"){DefaultValueFactory= _ =>Defaults.ControlPlaneNodes,Description="The number of control plane nodes in the cluster."};
51
+
controlNodes.Aliases.Add("-c");
52
+
varworkers=newOption<int>("--Workers"){DefaultValueFactory= _ =>Defaults.WorkerNodes,Description="The number of worker nodes in the cluster."};
53
+
workers.Aliases.Add("-w");
54
+
varkubeVersion=newOption<string>("--KubeVersion"){DefaultValueFactory= _ =>"1.29",Description="The kubernetes api version."};
0 commit comments