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
4 changes: 2 additions & 2 deletions docs/stackit_load-balancer_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ stackit load-balancer describe LOAD_BALANCER_NAME [flags]
Get details of a load balancer with name "my-load-balancer"
$ stackit load-balancer describe my-load-balancer

Get details of a load-balancer with name "my-load-balancer" in a table format
$ stackit load-balancer describe my-load-balancer --output-format pretty
Get details of a load-balancer with name "my-load-balancer" in a JSON format
$ stackit load-balancer describe my-load-balancer --output-format json
```

### Options
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_load-balancer_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ stackit load-balancer update LOAD_BALANCER_NAME [flags]
$ stackit load-balancer update xxx --payload "{...}"

Generate a payload with the current values of an existing load balancer xxx, and adapt it with custom values for the different configuration options
$ stackit load-balancer generate-payload --instance-name xxx > ./payload.json
$ stackit load-balancer generate-payload --lb-name xxx > ./payload.json
<Modify payload in file>
$ stackit load-balancer update xxx --payload @./payload.json
```
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/load-balancer/update/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
`$ stackit load-balancer update xxx --payload "{...}"`),
examples.NewExample(
`Generate a payload with the current values of an existing load balancer xxx, and adapt it with custom values for the different configuration options`,
`$ stackit load-balancer generate-payload --instance-name xxx > ./payload.json`,
`$ stackit load-balancer generate-payload --lb-name xxx > ./payload.json`,
`<Modify payload in file>`,
`$ stackit load-balancer update xxx --payload @./payload.json`),
),
Expand Down