Skip to content

Commit c26ebd7

Browse files
Fix examples (#275)
1 parent 138786b commit c26ebd7

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/stackit_load-balancer_observability-credentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides functionality for Load Balancer observability credentials
44

55
### Synopsis
66

7-
Provides functionality for Load Balancer observability credentials. These commands can be used to store and update existing credentials, which are valid to be used for Load Balancer Observability. This means, e.g. when using Argus, that credentials first must be created for that Argus instance (by using "stackit argus credentials create") and then can be managed for a Load Balancer by using the commands in this group.
7+
Provides functionality for Load Balancer observability credentials. These commands can be used to store and update existing credentials, which are valid to be used for Load Balancer observability. This means, e.g. when using Argus, first of all these credentials must be created for that Argus instance (by using "stackit argus credentials create") and then can be managed for a Load Balancer by using the commands in this group.
88

99
```
1010
stackit load-balancer observability-credentials [flags]

docs/stackit_load-balancer_observability-credentials_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ stackit load-balancer observability-credentials delete CREDENTIALS_REF [flags]
1414

1515
```
1616
Delete observability credentials with reference "credentials-xxx" for Load Balancer
17-
$ stackit loadbalancer credentials delete credentials-xxx
17+
$ stackit load-balancer observability-credentials delete credentials-xxx
1818
```
1919

2020
### Options

docs/stackit_load-balancer_observability-credentials_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ stackit load-balancer observability-credentials update [flags]
1414

1515
```
1616
Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx". The password is entered using the terminal
17-
$ stackit load-balancer observability-credentials update credentials-xxx --password
17+
$ stackit load-balancer observability-credentials update credentials-xxx
1818
1919
Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx", by providing it in the flag
2020
$ stackit load-balancer observability-credentials update credentials-xxx --password new-pwd

internal/cmd/load-balancer/observability-credentials/delete/delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
3535
Example: examples.Build(
3636
examples.NewExample(
3737
`Delete observability credentials with reference "credentials-xxx" for Load Balancer`,
38-
"$ stackit loadbalancer credentials delete credentials-xxx"),
38+
"$ stackit load-balancer observability-credentials delete credentials-xxx"),
3939
),
4040
RunE: func(cmd *cobra.Command, args []string) error {
4141
ctx := context.Background()

internal/cmd/load-balancer/observability-credentials/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
4444
Example: examples.Build(
4545
examples.NewExample(
4646
`Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx". The password is entered using the terminal`,
47-
"$ stackit load-balancer observability-credentials update credentials-xxx --password "),
47+
"$ stackit load-balancer observability-credentials update credentials-xxx"),
4848
examples.NewExample(
4949
`Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx", by providing it in the flag`,
5050
"$ stackit load-balancer observability-credentials update credentials-xxx --password new-pwd"),

0 commit comments

Comments
 (0)