Skip to content

Commit dbebcb6

Browse files
committed
feat(valkey): address review comments
relates to STACKITTPR-845
1 parent 73ee793 commit dbebcb6

20 files changed

Lines changed: 69 additions & 69 deletions

docs/stackit_valkey_credentials_create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ stackit valkey credentials create [flags]
1313
### Examples
1414

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

docs/stackit_valkey_credentials_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ stackit valkey credentials delete CREDENTIALS_ID [flags]
1313
### Examples
1414

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

docs/stackit_valkey_credentials_describe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 Key Value Store (valkey) instance with ID "yyy"
16+
Get details of credentials with ID "xxx" from a 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 Key Value Store (valkey) instance with ID "yyy" in JSON format
19+
Get details of credentials with ID "xxx" from a Valkey instance with ID "yyy" in JSON format
2020
$ stackit valkey credentials describe xxx --instance-id yyy --output-format json
2121
```
2222

docs/stackit_valkey_credentials_list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ stackit valkey credentials list [flags]
1313
### Examples
1414

1515
```
16-
List all credentials' IDs for a Key Value Store (valkey) instance with ID "xxx"
16+
List all credentials' IDs for a Valkey instance with ID "xxx"
1717
$ stackit valkey credentials list --instance-id xxx
1818
19-
List all credentials' IDs for a Key Value Store (valkey) instance with ID "xxx" in JSON format
19+
List all credentials' IDs for a 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 Key Value Store (valkey) instance with ID "xxx"
22+
List up to 10 credentials' IDs for a Valkey instance with ID "xxx"
2323
$ stackit valkey credentials list --instance-id xxx --limit 10
2424
```
2525

docs/stackit_valkey_instance_create.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ stackit valkey instance create [flags]
1313
### Examples
1414

1515
```
16-
Create a Key Value Store (valkey) instance with name "my-instance" and specify plan by name and version
16+
Create a 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 Key Value Store (valkey) instance with name "my-instance" and specify plan by ID
19+
Create a 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 Key Value Store (valkey) instance with name "my-instance" and specify IP range which is allowed to access it
22+
Create a 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 Key Value Store (valkey) version
42+
--version string Instance Valkey version
4343
```
4444

4545
### Options inherited from parent commands

docs/stackit_valkey_instance_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ stackit valkey instance delete INSTANCE_ID [flags]
1313
### Examples
1414

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

docs/stackit_valkey_instance_describe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ stackit valkey instance describe INSTANCE_ID [flags]
1313
### Examples
1414

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

docs/stackit_valkey_instance_list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ stackit valkey instance list [flags]
1313
### Examples
1414

1515
```
16-
List all Key Value Store (valkey) instances
16+
List all Valkey instances
1717
$ stackit valkey instance list
1818
19-
List all Key Value Store (valkey) instances in JSON format
19+
List all Valkey instances in JSON format
2020
$ stackit valkey instance list --output-format json
2121
22-
List up to 10 Key Value Store (valkey) instances
22+
List up to 10 Valkey instances
2323
$ stackit valkey instance list --limit 10
2424
```
2525

docs/stackit_valkey_instance_update.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ stackit valkey instance update INSTANCE_ID [flags]
1313
### Examples
1414

1515
```
16-
Update the plan of a Key Value Store (valkey) instance with ID "xxx" by plan ID
16+
Update the plan of a Valkey instance with ID "xxx" by plan ID
1717
$ stackit valkey instance update xxx --plan-id yyy
1818
19-
Update the plan of a Key Value Store (valkey) instance with ID "xxx" by name and version
19+
Update the plan of a Valkey instance with ID "xxx" by name and version
2020
$ stackit valkey instance update xxx --plan-name stackit-keyvalue-1.2.10-replica --version 8
2121
22-
Update the range of IPs allowed to access a Key Value Store (valkey) instance with ID "xxx"
22+
Update the range of IPs allowed to access a Valkey instance with ID "xxx"
2323
$ stackit valkey instance update xxx --acl 1.2.3.0/24
2424
```
2525

@@ -38,7 +38,7 @@ stackit valkey instance update INSTANCE_ID [flags]
3838
--plan-name string Plan name
3939
--repl-backlog-size string Replication backlog size (e.g. "1mb")
4040
--syslog strings Syslog
41-
--version string Instance Key Value Store (valkey) version
41+
--version string Instance Valkey version
4242
```
4343

4444
### Options inherited from parent commands

docs/stackit_valkey_plans.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ stackit valkey plans [flags]
1313
### Examples
1414

1515
```
16-
Lists all Key Value Store (valkey) service plans
16+
Lists all Valkey service plans
1717
$ stackit valkey plans
1818
19-
List all Key Value Store (valkey) service plans in JSON format
19+
List all Valkey service plans in JSON format
2020
$ stackit valkey plans --output-format json
2121
22-
List up to 10 Key Value Store (valkey) service plans
22+
List up to 10 Valkey service plans
2323
$ stackit valkey plans --limit 10
2424
```
2525

0 commit comments

Comments
 (0)