Skip to content

Commit 13c0511

Browse files
committed
fix review findings
1 parent 1a1e1fa commit 13c0511

26 files changed

+82
-73
lines changed

docs/stackit_ske.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ stackit ske [flags]
3535
* [stackit ske describe](./stackit_ske_describe.md) - Shows overall details regarding SKE
3636
* [stackit ske disable](./stackit_ske_disable.md) - Disables SKE for a project
3737
* [stackit ske enable](./stackit_ske_enable.md) - Enables SKE for a project
38-
* [stackit ske hibernate](./stackit_ske_hibernate.md) - Trigger hibernate for a SKE cluster
3938
* [stackit ske kubeconfig](./stackit_ske_kubeconfig.md) - Provides functionality for SKE kubeconfig
40-
* [stackit ske maintenance](./stackit_ske_maintenance.md) - Trigger maintenance for a SKE cluster
4139
* [stackit ske options](./stackit_ske_options.md) - Lists SKE provider options
42-
* [stackit ske reconcile](./stackit_ske_reconcile.md) - Trigger reconcile for a SKE cluster
43-
* [stackit ske wakeup](./stackit_ske_wakeup.md) - Trigger wakeup from hibernation for a SKE cluster
4440

docs/stackit_ske_cluster.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,14 @@ stackit ske cluster [flags]
3030
### SEE ALSO
3131

3232
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
33-
* [stackit ske cluster create](./stackit_ske_cluster_create.md) - Creates an SKE cluster
33+
* [stackit ske cluster create](./stackit_ske_cluster_create.md) - Creates a SKE cluster
3434
* [stackit ske cluster delete](./stackit_ske_cluster_delete.md) - Deletes a SKE cluster
3535
* [stackit ske cluster describe](./stackit_ske_cluster_describe.md) - Shows details of a SKE cluster
3636
* [stackit ske cluster generate-payload](./stackit_ske_cluster_generate-payload.md) - Generates a payload to create/update SKE clusters
37+
* [stackit ske cluster hibernate](./stackit_ske_cluster_hibernate.md) - Trigger hibernate for a SKE cluster
3738
* [stackit ske cluster list](./stackit_ske_cluster_list.md) - Lists all SKE clusters
38-
* [stackit ske cluster update](./stackit_ske_cluster_update.md) - Updates an SKE cluster
39+
* [stackit ske cluster maintenance](./stackit_ske_cluster_maintenance.md) - Trigger maintenance for a SKE cluster
40+
* [stackit ske cluster reconcile](./stackit_ske_cluster_reconcile.md) - Trigger reconcile for a SKE cluster
41+
* [stackit ske cluster update](./stackit_ske_cluster_update.md) - Updates a SKE cluster
42+
* [stackit ske cluster wakeup](./stackit_ske_cluster_wakeup.md) - Trigger wakeup from hibernation for a SKE cluster
3943

docs/stackit_ske_cluster_create.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## stackit ske cluster create
22

3-
Creates an SKE cluster
3+
Creates a SKE cluster
44

55
### Synopsis
66

@@ -15,13 +15,13 @@ stackit ske cluster create CLUSTER_NAME [flags]
1515
### Examples
1616

1717
```
18-
Create an SKE cluster using default configuration
18+
Create a SKE cluster using default configuration
1919
$ stackit ske cluster create my-cluster
2020
21-
Create an SKE cluster using an API payload sourced from the file "./payload.json"
21+
Create a SKE cluster using an API payload sourced from the file "./payload.json"
2222
$ stackit ske cluster create my-cluster --payload @./payload.json
2323
24-
Create an SKE cluster using an API payload provided as a JSON string
24+
Create a SKE cluster using an API payload provided as a JSON string
2525
$ stackit ske cluster create my-cluster --payload "{...}"
2626
2727
Generate a payload with default values, and adapt it with custom values for the different configuration options

docs/stackit_ske_cluster_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ stackit ske cluster delete CLUSTER_NAME [flags]
1313
### Examples
1414

1515
```
16-
Delete an SKE cluster with name "my-cluster"
16+
Delete a SKE cluster with name "my-cluster"
1717
$ stackit ske cluster delete my-cluster
1818
```
1919

docs/stackit_ske_cluster_describe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ stackit ske cluster describe CLUSTER_NAME [flags]
1313
### Examples
1414

1515
```
16-
Get details of an SKE cluster with name "my-cluster"
16+
Get details of a SKE cluster with name "my-cluster"
1717
$ stackit ske cluster describe my-cluster
1818
19-
Get details of an SKE cluster with name "my-cluster" in JSON format
19+
Get details of a SKE cluster with name "my-cluster" in JSON format
2020
$ stackit ske cluster describe my-cluster --output-format json
2121
```
2222

docs/stackit_ske_hibernate.md renamed to docs/stackit_ske_cluster_hibernate.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## stackit ske hibernate
1+
## stackit ske cluster hibernate
22

33
Trigger hibernate for a SKE cluster
44

@@ -7,7 +7,7 @@ Trigger hibernate for a SKE cluster
77
Trigger hibernate for a STACKIT Kubernetes Engine (SKE) cluster.
88

99
```
10-
stackit ske hibernate CLUSTER_NAME [flags]
10+
stackit ske cluster hibernate CLUSTER_NAME [flags]
1111
```
1212

1313
### Examples
@@ -20,7 +20,7 @@ stackit ske hibernate CLUSTER_NAME [flags]
2020
### Options
2121

2222
```
23-
-h, --help Help for "stackit ske hibernate"
23+
-h, --help Help for "stackit ske cluster hibernate"
2424
```
2525

2626
### Options inherited from parent commands
@@ -36,5 +36,5 @@ stackit ske hibernate CLUSTER_NAME [flags]
3636

3737
### SEE ALSO
3838

39-
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
39+
* [stackit ske cluster](./stackit_ske_cluster.md) - Provides functionality for SKE cluster
4040

docs/stackit_ske_maintenance.md renamed to docs/stackit_ske_cluster_maintenance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## stackit ske maintenance
1+
## stackit ske cluster maintenance
22

33
Trigger maintenance for a SKE cluster
44

@@ -7,7 +7,7 @@ Trigger maintenance for a SKE cluster
77
Trigger maintenance for a STACKIT Kubernetes Engine (SKE) cluster.
88

99
```
10-
stackit ske maintenance CLUSTER_NAME [flags]
10+
stackit ske cluster maintenance CLUSTER_NAME [flags]
1111
```
1212

1313
### Examples
@@ -20,7 +20,7 @@ stackit ske maintenance CLUSTER_NAME [flags]
2020
### Options
2121

2222
```
23-
-h, --help Help for "stackit ske maintenance"
23+
-h, --help Help for "stackit ske cluster maintenance"
2424
```
2525

2626
### Options inherited from parent commands
@@ -36,5 +36,5 @@ stackit ske maintenance CLUSTER_NAME [flags]
3636

3737
### SEE ALSO
3838

39-
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
39+
* [stackit ske cluster](./stackit_ske_cluster.md) - Provides functionality for SKE cluster
4040

docs/stackit_ske_reconcile.md renamed to docs/stackit_ske_cluster_reconcile.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## stackit ske reconcile
1+
## stackit ske cluster reconcile
22

33
Trigger reconcile for a SKE cluster
44

@@ -7,7 +7,7 @@ Trigger reconcile for a SKE cluster
77
Trigger reconcile for a STACKIT Kubernetes Engine (SKE) cluster.
88

99
```
10-
stackit ske reconcile CLUSTER_NAME [flags]
10+
stackit ske cluster reconcile CLUSTER_NAME [flags]
1111
```
1212

1313
### Examples
@@ -20,7 +20,7 @@ stackit ske reconcile CLUSTER_NAME [flags]
2020
### Options
2121

2222
```
23-
-h, --help Help for "stackit ske reconcile"
23+
-h, --help Help for "stackit ske cluster reconcile"
2424
```
2525

2626
### Options inherited from parent commands
@@ -36,5 +36,5 @@ stackit ske reconcile CLUSTER_NAME [flags]
3636

3737
### SEE ALSO
3838

39-
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
39+
* [stackit ske cluster](./stackit_ske_cluster.md) - Provides functionality for SKE cluster
4040

docs/stackit_ske_cluster_update.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## stackit ske cluster update
22

3-
Updates an SKE cluster
3+
Updates a SKE cluster
44

55
### Synopsis
66

@@ -15,10 +15,10 @@ stackit ske cluster update CLUSTER_NAME [flags]
1515
### Examples
1616

1717
```
18-
Update an SKE cluster using an API payload sourced from the file "./payload.json"
18+
Update a SKE cluster using an API payload sourced from the file "./payload.json"
1919
$ stackit ske cluster update my-cluster --payload @./payload.json
2020
21-
Update an SKE cluster using an API payload provided as a JSON string
21+
Update a SKE cluster using an API payload provided as a JSON string
2222
$ stackit ske cluster update my-cluster --payload "{...}"
2323
2424
Generate a payload with the current values of a cluster, and adapt it with custom values for the different configuration options

docs/stackit_ske_wakeup.md renamed to docs/stackit_ske_cluster_wakeup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## stackit ske wakeup
1+
## stackit ske cluster wakeup
22

33
Trigger wakeup from hibernation for a SKE cluster
44

@@ -7,7 +7,7 @@ Trigger wakeup from hibernation for a SKE cluster
77
Trigger wakeup from hibernation for a STACKIT Kubernetes Engine (SKE) cluster.
88

99
```
10-
stackit ske wakeup CLUSTER_NAME [flags]
10+
stackit ske cluster wakeup CLUSTER_NAME [flags]
1111
```
1212

1313
### Examples
@@ -20,7 +20,7 @@ stackit ske wakeup CLUSTER_NAME [flags]
2020
### Options
2121

2222
```
23-
-h, --help Help for "stackit ske wakeup"
23+
-h, --help Help for "stackit ske cluster wakeup"
2424
```
2525

2626
### Options inherited from parent commands
@@ -36,5 +36,5 @@ stackit ske wakeup CLUSTER_NAME [flags]
3636

3737
### SEE ALSO
3838

39-
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
39+
* [stackit ske cluster](./stackit_ske_cluster.md) - Provides functionality for SKE cluster
4040

0 commit comments

Comments
 (0)