Skip to content
Open
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
1 change: 1 addition & 0 deletions docs/stackit.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ stackit [flags]
* [stackit server](./stackit_server.md) - Provides functionality for servers
* [stackit service-account](./stackit_service-account.md) - Provides functionality for service accounts
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
* [stackit volume](./stackit_volume.md) - Provides functionality for volumes

36 changes: 36 additions & 0 deletions docs/stackit_valkey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## stackit valkey

Provides functionality for Valkey

### Synopsis

Provides functionality for Valkey.

```
stackit valkey [flags]
```

### Options

```
-h, --help Help for "stackit valkey"
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit](./stackit.md) - Manage STACKIT resources using the command line
* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials
* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Valkey instances
* [stackit valkey plans](./stackit_valkey_plans.md) - Lists all Valkey service plans

37 changes: 37 additions & 0 deletions docs/stackit_valkey_credentials.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
## stackit valkey credentials

Provides functionality for Valkey credentials

### Synopsis

Provides functionality for Valkey credentials.

```
stackit valkey credentials [flags]
```

### Options

```
-h, --help Help for "stackit valkey credentials"
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
* [stackit valkey credentials create](./stackit_valkey_credentials_create.md) - Creates credentials for a Valkey instance
* [stackit valkey credentials delete](./stackit_valkey_credentials_delete.md) - Deletes credentials of a Valkey instance
* [stackit valkey credentials describe](./stackit_valkey_credentials_describe.md) - Shows details of credentials of a Valkey instance
* [stackit valkey credentials list](./stackit_valkey_credentials_list.md) - Lists all credentials' IDs for a Valkey instance

45 changes: 45 additions & 0 deletions docs/stackit_valkey_credentials_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
## stackit valkey credentials create

Creates credentials for a Valkey instance

### Synopsis

Creates credentials (username and password) for a Valkey instance.

```
stackit valkey credentials create [flags]
```

### Examples

```
Create credentials for a Valkey instance with ID "xxx"
$ stackit beta valkey credentials create --instance-id xxx

Create credentials for a Valkey instance and show the password in the output
$ stackit beta valkey credentials create --instance-id xxx --show-password
```

### Options

```
-h, --help Help for "stackit valkey credentials create"
--instance-id string Instance ID
-s, --show-password Show password in output
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials

41 changes: 41 additions & 0 deletions docs/stackit_valkey_credentials_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## stackit valkey credentials delete

Deletes credentials of a Valkey instance

### Synopsis

Deletes credentials of a Valkey instance.

```
stackit valkey credentials delete CREDENTIALS_ID [flags]
```

### Examples

```
Delete credentials with ID "xxx" of a Valkey instance with ID "yyy"
$ stackit beta valkey credentials delete xxx --instance-id yyy
```

### Options

```
-h, --help Help for "stackit valkey credentials delete"
--instance-id string Instance ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials

44 changes: 44 additions & 0 deletions docs/stackit_valkey_credentials_describe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## stackit valkey credentials describe

Shows details of credentials of a Valkey instance

### Synopsis

Shows details of credentials of a Valkey instance. The password will be shown in plain text in the output.

```
stackit valkey credentials describe CREDENTIALS_ID [flags]
```

### Examples

```
Get details of credentials with ID "xxx" from a Valkey instance with ID "yyy"
$ stackit beta valkey credentials describe xxx --instance-id yyy

Get details of credentials with ID "xxx" from a Valkey instance with ID "yyy" in JSON format
$ stackit beta valkey credentials describe xxx --instance-id yyy --output-format json
```

### Options

```
-h, --help Help for "stackit valkey credentials describe"
--instance-id string Instance ID
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials

48 changes: 48 additions & 0 deletions docs/stackit_valkey_credentials_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
## stackit valkey credentials list

Lists all credentials' IDs for a Valkey instance

### Synopsis

Lists all credentials' IDs for a Valkey instance.

```
stackit valkey credentials list [flags]
```

### Examples

```
List all credentials' IDs for a Valkey instance with ID "xxx"
$ stackit beta valkey credentials list --instance-id xxx

List all credentials' IDs for a Valkey instance with ID "xxx" in JSON format
$ stackit beta valkey credentials list --instance-id xxx --output-format json

List up to 10 credentials' IDs for a Valkey instance with ID "xxx"
$ stackit beta valkey credentials list --instance-id xxx --limit 10
```

### Options

```
-h, --help Help for "stackit valkey credentials list"
--instance-id string Instance ID
--limit int Maximum number of entries to list
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey credentials](./stackit_valkey_credentials.md) - Provides functionality for Valkey credentials

38 changes: 38 additions & 0 deletions docs/stackit_valkey_instance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## stackit valkey instance

Provides functionality for Valkey instances

### Synopsis

Provides functionality for Valkey instances.

```
stackit valkey instance [flags]
```

### Options

```
-h, --help Help for "stackit valkey instance"
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey](./stackit_valkey.md) - Provides functionality for Valkey
* [stackit valkey instance create](./stackit_valkey_instance_create.md) - Creates a Valkey instance
* [stackit valkey instance delete](./stackit_valkey_instance_delete.md) - Deletes a Valkey instance
* [stackit valkey instance describe](./stackit_valkey_instance_describe.md) - Shows details of a Valkey instance
* [stackit valkey instance list](./stackit_valkey_instance_list.md) - Lists all Valkey instances
* [stackit valkey instance update](./stackit_valkey_instance_update.md) - Updates a Valkey instance

59 changes: 59 additions & 0 deletions docs/stackit_valkey_instance_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
## stackit valkey instance create

Creates a Valkey instance

### Synopsis

Creates a Valkey instance.

```
stackit valkey instance create [flags]
```

### Examples

```
Create a Valkey instance with name "my-instance" and specify plan by name and version
$ stackit beta valkey instance create --name my-instance --plan-name stackit-keyvalue-1.2.10-replica --version 8

Create a Valkey instance with name "my-instance" and specify plan by ID
$ stackit beta valkey instance create --name my-instance --plan-id xxx

Create a Valkey instance with name "my-instance" and specify IP range which is allowed to access it
$ stackit beta valkey instance create --name my-instance --plan-id xxx --acl 1.2.3.0/24
```

### Options

```
--acl strings List of IP networks in CIDR notation which are allowed to access this instance (default [])
--enable-monitoring Enable monitoring
--graphite string Graphite host
-h, --help Help for "stackit valkey instance create"
--metrics-frequency int32 Metrics frequency in seconds
--metrics-prefix string Metrics prefix
--min-replicas-to-write int32 Minimum number of replicas that must acknowledge a write for it to be accepted
--monitoring-instance-id string Monitoring instance ID
-n, --name string Instance name
--plan-id string Plan ID
--plan-name string Plan name
--repl-backlog-size string Replication backlog size (e.g. "1mb")
--syslog strings Syslog
--version string Instance Valkey version
```

### Options inherited from parent commands

```
-y, --assume-yes If set, skips all confirmation prompts
--async If set, runs the command asynchronously
-o, --output-format string Output format, (one of: [json, pretty, none, yaml])
-p, --project-id string Project ID
--region string Target region for region-specific requests
--verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info")
```

### SEE ALSO

* [stackit valkey instance](./stackit_valkey_instance.md) - Provides functionality for Valkey instances

Loading