Skip to content

Commit fd86e7b

Browse files
committed
fix: review findings
1 parent 6efd77d commit fd86e7b

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

docs/stackit_network_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ stackit network create [flags]
2323
$ stackit network create --name network-1 --no-ipv4-gateway
2424
2525
Create a network with name "network-1" and labels "key=value,key1=value1"
26-
$ stackit beta network create --name network-1 --labels key=value,key1=value1
26+
$ stackit network create --name network-1 --labels key=value,key1=value1
2727
2828
Create an IPv4 network with name "network-1" with DNS name servers, a prefix and a gateway
2929
$ stackit network create --name network-1 --ipv4-dns-name-servers "1.1.1.1,8.8.8.8,9.9.9.9" --ipv4-prefix "10.1.2.0/24" --ipv4-gateway "10.1.2.3"

docs/stackit_network_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ stackit network list [flags]
2323
$ stackit network list --limit 10
2424
2525
Lists all networks which contains the label xxx
26-
$ tackit network list --label-selector xxx
26+
$ stackit network list --label-selector xxx
2727
```
2828

2929
### Options

docs/stackit_volume_update.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ stackit volume update VOLUME_ID [flags]
1414

1515
```
1616
Update volume with ID "xxx" with new name "volume-1-new"
17-
$ stackit beta volume update xxx --name volume-1-new
17+
$ stackit volume update xxx --name volume-1-new
1818
1919
Update volume with ID "xxx" with new name "volume-1-new" and new description "volume-1-desc-new"
20-
$ stackit beta volume update xxx --name volume-1-new --description volume-1-desc-new
20+
$ stackit volume update xxx --name volume-1-new --description volume-1-desc-new
2121
2222
Update volume with ID "xxx" with new name "volume-1-new", new description "volume-1-desc-new" and label(s)
23-
$ stackit beta volume update xxx --name volume-1-new --description volume-1-desc-new --labels key=value,foo=bar
23+
$ stackit volume update xxx --name volume-1-new --description volume-1-desc-new --labels key=value,foo=bar
2424
```
2525

2626
### Options

internal/cmd/network-area/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
6666
),
6767
examples.NewExample(
6868
`Create a network area with name "network-area-1" in organization with ID "xxx" with network ranges and a transfer network and labels "key=value,key1=value1"`,
69-
`$ stackit beta network-area create --name network-area-1 --organization-id xxx --network-ranges "1.1.1.0/24,192.123.1.0/24" --transfer-network "192.160.0.0/24" --labels key=value,key1=value1`,
69+
`$ stackit network-area create --name network-area-1 --organization-id xxx --network-ranges "1.1.1.0/24,192.123.1.0/24" --transfer-network "192.160.0.0/24" --labels key=value,key1=value1`,
7070
),
7171
),
7272
RunE: func(cmd *cobra.Command, _ []string) error {

internal/cmd/network-area/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
5555
),
5656
examples.NewExample(
5757
`Lists all network areas of organization "xxx" which contains the label yyy`,
58-
"$ stackit beta network-area list --organization-id xxx --label-selector yyy",
58+
"$ stackit network-area list --organization-id xxx --label-selector yyy",
5959
),
6060
),
6161
RunE: func(cmd *cobra.Command, _ []string) error {

internal/cmd/network/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
7676
),
7777
examples.NewExample(
7878
`Create a network with name "network-1" and labels "key=value,key1=value1"`,
79-
`$ stackit beta network create --name network-1 --labels key=value,key1=value1`,
79+
`$ stackit network create --name network-1 --labels key=value,key1=value1`,
8080
),
8181
examples.NewExample(
8282
`Create an IPv4 network with name "network-1" with DNS name servers, a prefix and a gateway`,

internal/cmd/network/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
5353
),
5454
examples.NewExample(
5555
`Lists all networks which contains the label xxx`,
56-
"$ tackit beta network list --label-selector xxx",
56+
"$ stackit network list --label-selector xxx",
5757
),
5858
),
5959
RunE: func(cmd *cobra.Command, _ []string) error {

internal/cmd/volume/update/update.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ func NewCmd(p *print.Printer) *cobra.Command {
4545
Example: examples.Build(
4646
examples.NewExample(
4747
`Update volume with ID "xxx" with new name "volume-1-new"`,
48-
`$ stackit beta volume update xxx --name volume-1-new`,
48+
`$ stackit volume update xxx --name volume-1-new`,
4949
),
5050
examples.NewExample(
5151
`Update volume with ID "xxx" with new name "volume-1-new" and new description "volume-1-desc-new"`,
52-
`$ stackit beta volume update xxx --name volume-1-new --description volume-1-desc-new`,
52+
`$ stackit volume update xxx --name volume-1-new --description volume-1-desc-new`,
5353
),
5454
examples.NewExample(
5555
`Update volume with ID "xxx" with new name "volume-1-new", new description "volume-1-desc-new" and label(s)`,
56-
`$ stackit beta volume update xxx --name volume-1-new --description volume-1-desc-new --labels key=value,foo=bar`,
56+
`$ stackit volume update xxx --name volume-1-new --description volume-1-desc-new --labels key=value,foo=bar`,
5757
),
5858
),
5959
RunE: func(cmd *cobra.Command, args []string) error {

0 commit comments

Comments
 (0)