Skip to content
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 @@ -14,7 +14,7 @@ EXAMPLES:

ARGS:
[project-id] Project ID to use. If none is passed the default project ID will be used
name The name of the cluster
name=<generated> The name of the cluster
[description] The description of the cluster
[tags.{index}] The tags associated with the cluster
version The Kubernetes version of the cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ EXAMPLES:

ARGS:
cluster-id The ID of the cluster in which the pool will be created
name The name of the pool
name=<generated> The name of the pool
node-type The node type is the type of Scaleway Instance wanted for the pool
[placement-group-id] The placement group ID in which all the nodes of the pool will be created
[autoscaling] The enablement of the autoscaling feature for the pool
Expand Down
2 changes: 2 additions & 0 deletions internal/namespaces/k8s/v1/k8s_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ func k8sClusterCreate() *core.Command {
Required: true,
Deprecated: false,
Positional: false,
Default: core.RandomValueGenerator("k8s"),
},
{
Name: "description",
Expand Down Expand Up @@ -1190,6 +1191,7 @@ func k8sPoolCreate() *core.Command {
Required: true,
Deprecated: false,
Positional: false,
Default: core.RandomValueGenerator("pool"),
},
{
Name: "node-type",
Expand Down