Skip to content

Commit 11028db

Browse files
authored
docs(k8s): fixed typos (#2865)
1 parent 564e078 commit 11028db

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cmd/scw/testdata/test-all-usage-k8s-cluster-create-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
22
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3-
Creates a new Kubernetes cluster on a Scaleway account.
3+
Create a new Kubernetes cluster on a Scaleway account.
44

55
USAGE:
66
scw k8s cluster create [arg=value ...]

cmd/scw/testdata/test-all-usage-k8s-cluster-delete-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
22
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3-
Deletes a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
3+
Delete a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
44

55
USAGE:
66
scw k8s cluster delete <cluster-id ...> [arg=value ...]

cmd/scw/testdata/test-all-usage-k8s-cluster-upgrade-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
22
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3-
Upgrades a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
3+
Upgrade a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
44

55
USAGE:
66
scw k8s cluster upgrade <cluster-id ...> [arg=value ...]

docs/commands/k8s.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ It is composed of different pools, each pool containing the same kind of nodes.
4646

4747
### Create a new cluster
4848

49-
Creates a new Kubernetes cluster on a Scaleway account.
49+
Create a new Kubernetes cluster on a Scaleway account.
5050

5151
**Usage:**
5252

@@ -129,7 +129,7 @@ scw k8s cluster create name=bar version=1.24.7 tags.0=tag1 tags.1=tag2 cni=calic
129129

130130
### Delete a cluster
131131

132-
Deletes a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
132+
Delete a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.
133133

134134
**Usage:**
135135

@@ -358,7 +358,7 @@ scw k8s cluster update 11111111-1111-1111-111111111111 feature-gates.0=TTLAfterF
358358

359359
### Upgrade a cluster
360360

361-
Upgrades a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
361+
Upgrade a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.
362362

363363
**Usage:**
364364

internal/namespaces/k8s/v1/k8s_cli.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ func k8sClusterList() *core.Command {
231231
func k8sClusterCreate() *core.Command {
232232
return &core.Command{
233233
Short: `Create a new cluster`,
234-
Long: `Creates a new Kubernetes cluster on a Scaleway account.`,
234+
Long: `Create a new Kubernetes cluster on a Scaleway account.`,
235235
Namespace: "k8s",
236236
Resource: "cluster",
237237
Verb: "create",
@@ -879,7 +879,7 @@ func k8sClusterUpdate() *core.Command {
879879
func k8sClusterDelete() *core.Command {
880880
return &core.Command{
881881
Short: `Delete a cluster`,
882-
Long: `Deletes a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.`,
882+
Long: `Delete a specific cluster and all its associated pools and nodes. Note that this method will not delete any Load Balancers or Block Volumes that are associated with the cluster.`,
883883
Namespace: "k8s",
884884
Resource: "cluster",
885885
Verb: "delete",
@@ -922,7 +922,7 @@ func k8sClusterDelete() *core.Command {
922922
func k8sClusterUpgrade() *core.Command {
923923
return &core.Command{
924924
Short: `Upgrade a cluster`,
925-
Long: `Upgrades a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.`,
925+
Long: `Upgrade a specific Kubernetes cluster and/or its associated pools to a specific and supported Kubernetes version.`,
926926
Namespace: "k8s",
927927
Resource: "cluster",
928928
Verb: "upgrade",

0 commit comments

Comments
 (0)