Skip to content

Commit 73ee793

Browse files
committed
feat(valkey): add Key Value Store to valkey descriptions
relates to STACKITTPR-845
1 parent 5d87a6f commit 73ee793

29 files changed

Lines changed: 149 additions & 149 deletions

docs/stackit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ stackit [flags]
5959
* [stackit service-account](./stackit_service-account.md) - Provides functionality for service accounts
6060
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
6161
* [stackit sqlserverflex](./stackit_sqlserverflex.md) - Provides functionality for SQLServer Flex
62-
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
62+
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Key Value Store (valkey)
6363
* [stackit volume](./stackit_volume.md) - Provides functionality for volumes
6464

docs/stackit_valkey.md

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

3-
Provides functionality for Valkey
3+
Provides functionality for Key Value Store (valkey)
44

55
### Synopsis
66

7-
Provides functionality for Valkey.
7+
Provides functionality for Key Value Store (valkey).
88

99
```
1010
stackit valkey [flags]
@@ -30,7 +30,7 @@ stackit valkey [flags]
3030
### SEE ALSO
3131

3232
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
33-
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
34-
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Valkey instances
35-
* [stackit valkey plans](./stackit_valkey_plans.md) - Lists all Valkey service plans
33+
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Key Value Store (valkey) credentials
34+
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Key Value Store (valkey) instances
35+
* [stackit valkey plans](./stackit_valkey_plans.md) - Lists all Key Value Store (valkey) service plans
3636

docs/stackit_valkey_credentials.md

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

3-
Provides functionality for Valkey credentials
3+
Provides functionality for Key Value Store (valkey) credentials
44

55
### Synopsis
66

7-
Provides functionality for Valkey credentials.
7+
Provides functionality for Key Value Store (valkey) credentials.
88

99
```
1010
stackit valkey credentials [flags]
@@ -29,9 +29,9 @@ stackit valkey credentials [flags]
2929

3030
### SEE ALSO
3131

32-
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
33-
* [stackit valkey credentials create](./stackit_valkey_credentials_create.md) - Creates credentials for a Valkey instance
34-
* [stackit valkey credentials delete](./stackit_valkey_credentials_delete.md) - Deletes credentials of a Valkey instance
35-
* [stackit valkey credentials describe](./stackit_valkey_credentials_describe.md) - Shows details of credentials of a Valkey instance
36-
* [stackit valkey credentials list](./stackit_valkey_credentials_list.md) - Lists all credentials' IDs for a Valkey instance
32+
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Key Value Store (valkey)
33+
* [stackit valkey credentials create](./stackit_valkey_credentials_create.md) - Creates credentials for a Key Value Store (valkey) instance
34+
* [stackit valkey credentials delete](./stackit_valkey_credentials_delete.md) - Deletes credentials of a Key Value Store (valkey) instance
35+
* [stackit valkey credentials describe](./stackit_valkey_credentials_describe.md) - Shows details of credentials of a Key Value Store (valkey) instance
36+
* [stackit valkey credentials list](./stackit_valkey_credentials_list.md) - Lists all credentials' IDs for a Key Value Store (valkey) instance
3737

docs/stackit_valkey_credentials_create.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey credentials create
22

3-
Creates credentials for a Valkey instance
3+
Creates credentials for a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Creates credentials (username and password) for a Valkey instance.
7+
Creates credentials (username and password) for a Key Value Store (valkey) instance.
88

99
```
1010
stackit valkey credentials create [flags]
@@ -13,10 +13,10 @@ stackit valkey credentials create [flags]
1313
### Examples
1414

1515
```
16-
Create credentials for a Valkey instance with ID "xxx"
16+
Create credentials for a Key Value Store (valkey) instance with ID "xxx"
1717
$ stackit valkey credentials create --instance-id xxx
1818
19-
Create credentials for a Valkey instance and show the password in the output
19+
Create credentials for a Key Value Store (valkey) instance and show the password in the output
2020
$ stackit valkey credentials create --instance-id xxx --show-password
2121
```
2222

@@ -41,5 +41,5 @@ stackit valkey credentials create [flags]
4141

4242
### SEE ALSO
4343

44-
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
44+
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Key Value Store (valkey) credentials
4545

docs/stackit_valkey_credentials_delete.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey credentials delete
22

3-
Deletes credentials of a Valkey instance
3+
Deletes credentials of a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Deletes credentials of a Valkey instance.
7+
Deletes credentials of a Key Value Store (valkey) instance.
88

99
```
1010
stackit valkey credentials delete CREDENTIALS_ID [flags]
@@ -13,7 +13,7 @@ stackit valkey credentials delete CREDENTIALS_ID [flags]
1313
### Examples
1414

1515
```
16-
Delete credentials with ID "xxx" of a Valkey instance with ID "yyy"
16+
Delete credentials with ID "xxx" of a Key Value Store (valkey) instance with ID "yyy"
1717
$ stackit valkey credentials delete xxx --instance-id yyy
1818
```
1919

@@ -37,5 +37,5 @@ stackit valkey credentials delete CREDENTIALS_ID [flags]
3737

3838
### SEE ALSO
3939

40-
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
40+
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Key Value Store (valkey) credentials
4141

docs/stackit_valkey_credentials_describe.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey credentials describe
22

3-
Shows details of credentials of a Valkey instance
3+
Shows details of credentials of a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Shows details of credentials of a Valkey instance. The password will be shown in plain text in the output.
7+
Shows details of credentials of a Key Value Store (valkey) instance. The password will be shown in plain text in the output.
88

99
```
1010
stackit valkey credentials describe CREDENTIALS_ID [flags]
@@ -13,10 +13,10 @@ stackit valkey credentials describe CREDENTIALS_ID [flags]
1313
### Examples
1414

1515
```
16-
Get details of credentials with ID "xxx" from a Valkey instance with ID "yyy"
16+
Get details of credentials with ID "xxx" from a Key Value Store (valkey) instance with ID "yyy"
1717
$ stackit valkey credentials describe xxx --instance-id yyy
1818
19-
Get details of credentials with ID "xxx" from a Valkey instance with ID "yyy" in JSON format
19+
Get details of credentials with ID "xxx" from a Key Value Store (valkey) instance with ID "yyy" in JSON format
2020
$ stackit valkey credentials describe xxx --instance-id yyy --output-format json
2121
```
2222

@@ -40,5 +40,5 @@ stackit valkey credentials describe CREDENTIALS_ID [flags]
4040

4141
### SEE ALSO
4242

43-
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
43+
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Key Value Store (valkey) credentials
4444

docs/stackit_valkey_credentials_list.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey credentials list
22

3-
Lists all credentials' IDs for a Valkey instance
3+
Lists all credentials' IDs for a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Lists all credentials' IDs for a Valkey instance.
7+
Lists all credentials' IDs for a Key Value Store (valkey) instance.
88

99
```
1010
stackit valkey credentials list [flags]
@@ -13,13 +13,13 @@ stackit valkey credentials list [flags]
1313
### Examples
1414

1515
```
16-
List all credentials' IDs for a Valkey instance with ID "xxx"
16+
List all credentials' IDs for a Key Value Store (valkey) instance with ID "xxx"
1717
$ stackit valkey credentials list --instance-id xxx
1818
19-
List all credentials' IDs for a Valkey instance with ID "xxx" in JSON format
19+
List all credentials' IDs for a Key Value Store (valkey) instance with ID "xxx" in JSON format
2020
$ stackit valkey credentials list --instance-id xxx --output-format json
2121
22-
List up to 10 credentials' IDs for a Valkey instance with ID "xxx"
22+
List up to 10 credentials' IDs for a Key Value Store (valkey) instance with ID "xxx"
2323
$ stackit valkey credentials list --instance-id xxx --limit 10
2424
```
2525

@@ -44,5 +44,5 @@ stackit valkey credentials list [flags]
4444

4545
### SEE ALSO
4646

47-
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
47+
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Key Value Store (valkey) credentials
4848

docs/stackit_valkey_instance.md

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

3-
Provides functionality for Valkey instances
3+
Provides functionality for Key Value Store (valkey) instances
44

55
### Synopsis
66

7-
Provides functionality for Valkey instances.
7+
Provides functionality for Key Value Store (valkey) instances.
88

99
```
1010
stackit valkey instance [flags]
@@ -29,10 +29,10 @@ stackit valkey instance [flags]
2929

3030
### SEE ALSO
3131

32-
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
33-
* [stackit valkey instance create](./stackit_valkey_instance_create.md) - Creates a Valkey instance
34-
* [stackit valkey instance delete](./stackit_valkey_instance_delete.md) - Deletes a Valkey instance
35-
* [stackit valkey instance describe](./stackit_valkey_instance_describe.md) - Shows details of a Valkey instance
36-
* [stackit valkey instance list](./stackit_valkey_instance_list.md) - Lists all Valkey instances
37-
* [stackit valkey instance update](./stackit_valkey_instance_update.md) - Updates a Valkey instance
32+
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Key Value Store (valkey)
33+
* [stackit valkey instance create](./stackit_valkey_instance_create.md) - Creates a Key Value Store (valkey) instance
34+
* [stackit valkey instance delete](./stackit_valkey_instance_delete.md) - Deletes a Key Value Store (valkey) instance
35+
* [stackit valkey instance describe](./stackit_valkey_instance_describe.md) - Shows details of a Key Value Store (valkey) instance
36+
* [stackit valkey instance list](./stackit_valkey_instance_list.md) - Lists all Key Value Store (valkey) instances
37+
* [stackit valkey instance update](./stackit_valkey_instance_update.md) - Updates a Key Value Store (valkey) instance
3838

docs/stackit_valkey_instance_create.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey instance create
22

3-
Creates a Valkey instance
3+
Creates a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Creates a Valkey instance.
7+
Creates a Key Value Store (valkey) instance.
88

99
```
1010
stackit valkey instance create [flags]
@@ -13,13 +13,13 @@ stackit valkey instance create [flags]
1313
### Examples
1414

1515
```
16-
Create a Valkey instance with name "my-instance" and specify plan by name and version
16+
Create a Key Value Store (valkey) instance with name "my-instance" and specify plan by name and version
1717
$ stackit valkey instance create --name my-instance --plan-name stackit-keyvalue-1.2.10-replica --version 8
1818
19-
Create a Valkey instance with name "my-instance" and specify plan by ID
19+
Create a Key Value Store (valkey) instance with name "my-instance" and specify plan by ID
2020
$ stackit valkey instance create --name my-instance --plan-id xxx
2121
22-
Create a Valkey instance with name "my-instance" and specify IP range which is allowed to access it
22+
Create a Key Value Store (valkey) instance with name "my-instance" and specify IP range which is allowed to access it
2323
$ stackit valkey instance create --name my-instance --plan-id xxx --acl 1.2.3.0/24
2424
```
2525

@@ -39,7 +39,7 @@ stackit valkey instance create [flags]
3939
--plan-name string Plan name
4040
--repl-backlog-size string Replication backlog size (e.g. "1mb")
4141
--syslog strings Syslog
42-
--version string Instance Valkey version
42+
--version string Instance Key Value Store (valkey) version
4343
```
4444

4545
### Options inherited from parent commands
@@ -55,5 +55,5 @@ stackit valkey instance create [flags]
5555

5656
### SEE ALSO
5757

58-
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Valkey instances
58+
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Key Value Store (valkey) instances
5959

docs/stackit_valkey_instance_delete.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit valkey instance delete
22

3-
Deletes a Valkey instance
3+
Deletes a Key Value Store (valkey) instance
44

55
### Synopsis
66

7-
Deletes a Valkey instance.
7+
Deletes a Key Value Store (valkey) instance.
88

99
```
1010
stackit valkey instance delete INSTANCE_ID [flags]
@@ -13,7 +13,7 @@ stackit valkey instance delete INSTANCE_ID [flags]
1313
### Examples
1414

1515
```
16-
Delete a Valkey instance with ID "xxx"
16+
Delete a Key Value Store (valkey) instance with ID "xxx"
1717
$ stackit valkey instance delete xxx
1818
```
1919

@@ -36,5 +36,5 @@ stackit valkey instance delete INSTANCE_ID [flags]
3636

3737
### SEE ALSO
3838

39-
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Valkey instances
39+
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Key Value Store (valkey) instances
4040

0 commit comments

Comments
 (0)