Skip to content

Commit e927d15

Browse files
authored
Merge pull request #343 from stackitcloud/df/multi-config-merge-main
Merge main into multi-config feature branch
2 parents 807d688 + 1b22400 commit e927d15

File tree

85 files changed

+1406
-179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1406
-179
lines changed

docs/stackit.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ stackit [flags]
2727
### SEE ALSO
2828

2929
* [stackit argus](./stackit_argus.md) - Provides functionality for Argus
30-
* [stackit auth](./stackit_auth.md) - Provides authentication functionality
30+
* [stackit auth](./stackit_auth.md) - Authenticates the STACKIT CLI
3131
* [stackit config](./stackit_config.md) - Provides functionality for CLI configuration options
3232
* [stackit curl](./stackit_curl.md) - Executes an authenticated HTTP request to an endpoint
3333
* [stackit dns](./stackit_dns.md) - Provides functionality for DNS
3434
* [stackit load-balancer](./stackit_load-balancer.md) - Provides functionality for Load Balancer
3535
* [stackit logme](./stackit_logme.md) - Provides functionality for LogMe
3636
* [stackit mariadb](./stackit_mariadb.md) - Provides functionality for MariaDB
3737
* [stackit mongodbflex](./stackit_mongodbflex.md) - Provides functionality for MongoDB Flex
38-
* [stackit object-storage](./stackit_object-storage.md) - Provides functionality regarding Object Storage
38+
* [stackit object-storage](./stackit_object-storage.md) - Provides functionality for Object Storage
3939
* [stackit opensearch](./stackit_opensearch.md) - Provides functionality for OpenSearch
40-
* [stackit organization](./stackit_organization.md) - Provides functionality regarding organizations
40+
* [stackit organization](./stackit_organization.md) - Manages organizations
4141
* [stackit postgresflex](./stackit_postgresflex.md) - Provides functionality for PostgreSQL Flex
42-
* [stackit project](./stackit_project.md) - Provides functionality regarding projects
42+
* [stackit project](./stackit_project.md) - Manages projects
4343
* [stackit rabbitmq](./stackit_rabbitmq.md) - Provides functionality for RabbitMQ
4444
* [stackit redis](./stackit_redis.md) - Provides functionality for Redis
4545
* [stackit secrets-manager](./stackit_secrets-manager.md) - Provides functionality for Secrets Manager

docs/stackit_argus_scrape-config_generate-payload.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@ stackit argus scrape-config generate-payload [flags]
2020

2121
```
2222
Generate a Create payload with default values, and adapt it with custom values for the different configuration options
23-
$ stackit argus scrape-config generate-payload > ./payload.json
23+
$ stackit argus scrape-config generate-payload --file-path ./payload.json
2424
<Modify payload in file, if needed>
2525
$ stackit argus scrape-config create my-config --payload @./payload.json
2626
2727
Generate an Update payload with the values of an existing configuration named "my-config" for Argus instance xxx, and adapt it with custom values for the different configuration options
28-
$ stackit argus scrape-config generate-payload --job-name my-config --instance-id xxx > ./payload.json
28+
$ stackit argus scrape-config generate-payload --job-name my-config --instance-id xxx --file-path ./payload.json
2929
<Modify payload in file>
3030
$ stackit argus scrape-config update my-config --payload @./payload.json
31+
32+
Generate an Update payload with the values of an existing configuration named "my-config" for Argus instance xxx, and preview it in the terminal
33+
$ stackit argus scrape-config generate-payload --job-name my-config --instance-id xxx
3134
```
3235

3336
### Options
3437

3538
```
39+
-f, --file-path string If set, writes the payload to the given file. If unset, writes the payload to the standard output
3640
-h, --help Help for "stackit argus scrape-config generate-payload"
3741
--instance-id string Instance ID
3842
-n, --job-name string If set, generates an update payload with the current state of the given scrape config. If unset, generates a create payload with default values

docs/stackit_auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit auth
22

3-
Provides authentication functionality
3+
Authenticates the STACKIT CLI
44

55
### Synopsis
66

7-
Provides authentication functionality.
7+
Authenticates in the STACKIT CLI.
88

99
```
1010
stackit auth [flags]

docs/stackit_auth_activate-service-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ stackit auth activate-service-account [flags]
4848

4949
### SEE ALSO
5050

51-
* [stackit auth](./stackit_auth.md) - Provides authentication functionality
51+
* [stackit auth](./stackit_auth.md) - Authenticates the STACKIT CLI
5252

docs/stackit_auth_login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ stackit auth login [flags]
3535

3636
### SEE ALSO
3737

38-
* [stackit auth](./stackit_auth.md) - Provides authentication functionality
38+
* [stackit auth](./stackit_auth.md) - Authenticates the STACKIT CLI
3939

docs/stackit_dns_record-set.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ stackit dns record-set [flags]
3232
* [stackit dns record-set create](./stackit_dns_record-set_create.md) - Creates a DNS record set
3333
* [stackit dns record-set delete](./stackit_dns_record-set_delete.md) - Deletes a DNS record set
3434
* [stackit dns record-set describe](./stackit_dns_record-set_describe.md) - Shows details of a DNS record set
35-
* [stackit dns record-set list](./stackit_dns_record-set_list.md) - List DNS record sets
35+
* [stackit dns record-set list](./stackit_dns_record-set_list.md) - Lists DNS record sets
3636
* [stackit dns record-set update](./stackit_dns_record-set_update.md) - Updates a DNS record set
3737

docs/stackit_dns_record-set_list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit dns record-set list
22

3-
List DNS record sets
3+
Lists DNS record sets
44

55
### Synopsis
66

7-
List DNS record sets. Successfully deleted record sets are not listed by default.
7+
Lists DNS record sets. Successfully deleted record sets are not listed by default.
88

99
```
1010
stackit dns record-set list [flags]

docs/stackit_dns_zone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ stackit dns zone [flags]
3232
* [stackit dns zone create](./stackit_dns_zone_create.md) - Creates a DNS zone
3333
* [stackit dns zone delete](./stackit_dns_zone_delete.md) - Deletes a DNS zone
3434
* [stackit dns zone describe](./stackit_dns_zone_describe.md) - Shows details of a DNS zone
35-
* [stackit dns zone list](./stackit_dns_zone_list.md) - List DNS zones
35+
* [stackit dns zone list](./stackit_dns_zone_list.md) - Lists DNS zones
3636
* [stackit dns zone update](./stackit_dns_zone_update.md) - Updates a DNS zone
3737

docs/stackit_dns_zone_list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit dns zone list
22

3-
List DNS zones
3+
Lists DNS zones
44

55
### Synopsis
66

7-
List DNS zones. Successfully deleted zones are not listed by default.
7+
Lists DNS zones. Successfully deleted zones are not listed by default.
88

99
```
1010
stackit dns zone list [flags]

docs/stackit_load-balancer_generate-payload.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,25 @@ stackit load-balancer generate-payload [flags]
1515

1616
```
1717
Generate a payload, and adapt it with custom values for the different configuration options
18-
$ stackit load-balancer generate-payload > ./payload.json
18+
$ stackit load-balancer generate-payload --file-path ./payload.json
1919
<Modify payload in file, if needed>
2020
$ stackit load-balancer create --payload @./payload.json
2121
2222
Generate a payload with values of an existing load balancer, and adapt it with custom values for the different configuration options
23-
$ stackit load-balancer generate-payload --lb-name xxx > ./payload.json
23+
$ stackit load-balancer generate-payload --lb-name xxx --file-path ./payload.json
2424
<Modify payload in file>
2525
$ stackit load-balancer update xxx --payload @./payload.json
26+
27+
Generate a payload with values of an existing load balancer, and preview it in the terminal
28+
$ stackit load-balancer generate-payload --lb-name xxx
2629
```
2730

2831
### Options
2932

3033
```
31-
-h, --help Help for "stackit load-balancer generate-payload"
32-
-n, --lb-name string If set, generates the payload with the current values of the given load balancer. If unset, generates the payload with empty values
34+
-f, --file-path string If set, writes the payload to the given file. If unset, writes the payload to the standard output
35+
-h, --help Help for "stackit load-balancer generate-payload"
36+
-n, --lb-name string If set, generates the payload with the current values of the given load balancer. If unset, generates the payload with empty values
3337
```
3438

3539
### Options inherited from parent commands

0 commit comments

Comments
 (0)