Skip to content

feat(k8s): deprecate dashboard field #1857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ ARGS:
[tags.{index}] The tags associated with the cluster
version=latest The Kubernetes version of the cluster
cni=cilium The Container Network Interface (CNI) plugin that will run in the cluster (unknown_cni | cilium | calico | weave | flannel)
[enable-dashboard] The enablement of the Kubernetes Dashboard in the cluster
[ingress] The Ingress Controller that will run in the cluster (unknown_ingress | none | nginx | traefik | traefik2)
pools.{index}.name The name of the pool
pools.{index}.node-type The node type is the type of Scaleway Instance wanted for the pool
Expand Down Expand Up @@ -61,6 +60,9 @@ ARGS:
[organization-id] Organization ID to use. If none is passed the default organization ID will be used
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

DEPRECATED ARGS:
[enable-dashboard] The enablement of the Kubernetes Dashboard in the cluster

FLAGS:
-h, --help help for create
-w, --wait wait until the cluster is ready
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ ARGS:
[autoscaler-config.scale-down-unneeded-time] How long a node should be unneeded before it is eligible for scale down
[autoscaler-config.scale-down-utilization-threshold] Node utilization level, defined as sum of requested resources divided by capacity, below which a node can be considered for scale down
[autoscaler-config.max-graceful-termination-sec] Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node
[enable-dashboard] The new value of the Kubernetes Dashboard enablement
[ingress] The new Ingress Controller for the cluster (unknown_ingress | none | nginx | traefik | traefik2)
[auto-upgrade.enable] Whether or not auto upgrade is enabled for the cluster
[auto-upgrade.maintenance-window.start-hour] The start hour of the 2-hour maintenance window
Expand All @@ -44,6 +43,9 @@ ARGS:
[apiserver-cert-sans.{index}] Additional Subject Alternative Names for the Kubernetes API server certificate
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

DEPRECATED ARGS:
[enable-dashboard] The new value of the Kubernetes Dashboard enablement

FLAGS:
-h, --help help for update
-w, --wait wait until the cluster is ready
Expand Down
4 changes: 2 additions & 2 deletions internal/namespaces/k8s/v1/k8s_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func k8sClusterCreate() *core.Command {
Name: "enable-dashboard",
Short: `The enablement of the Kubernetes Dashboard in the cluster`,
Required: false,
Deprecated: false,
Deprecated: true,
Positional: false,
},
{
Expand Down Expand Up @@ -719,7 +719,7 @@ func k8sClusterUpdate() *core.Command {
Name: "enable-dashboard",
Short: `The new value of the Kubernetes Dashboard enablement`,
Required: false,
Deprecated: false,
Deprecated: true,
Positional: false,
},
{
Expand Down