File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
internal/namespaces/k8s/v1 Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1818 [description] The description of the cluster
1919 [tags.{index}] The tags associated with the cluster
2020 version The Kubernetes version of the cluster
21- cni The Container Network Interface (CNI) plugin that will run in the cluster (unknown_cni | cilium | calico | weave | flannel)
21+ cni=cilium The Container Network Interface (CNI) plugin that will run in the cluster (unknown_cni | cilium | calico | weave | flannel)
2222 [enable-dashboard] The enablement of the Kubernetes Dashboard in the cluster
2323 [ingress] The Ingress Controller that will run in the cluster (unknown_ingress | none | nginx | traefik | traefik2)
2424 pools.{index}.name The name of the pool
Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ func clusterAvailableVersionsListBuilder(c *core.Command) *core.Command {
8585
8686func clusterCreateBuilder (c * core.Command ) * core.Command {
8787 c .WaitFunc = waitForClusterFunc (clusterActionCreate )
88+
89+ c .ArgSpecs .GetByName ("cni" ).Default = core .DefaultValueSetter ("cilium" )
90+
8891 return c
8992}
9093
You can’t perform that action at this time.
0 commit comments