|
| 1 | +## stackit beta valkey instance create |
| 2 | + |
| 3 | +Creates a Valkey instance |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a Valkey instance. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta valkey instance create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a Valkey instance with name "my-instance" and specify plan by name and version |
| 17 | + $ stackit beta valkey instance create --name my-instance --plan-name stackit-keyvalue-1.2.10-replica --version 8 |
| 18 | +
|
| 19 | + Create a Valkey instance with name "my-instance" and specify plan by ID |
| 20 | + $ stackit beta valkey instance create --name my-instance --plan-id xxx |
| 21 | +
|
| 22 | + Create a Valkey instance with name "my-instance" and specify IP range which is allowed to access it |
| 23 | + $ stackit beta valkey instance create --name my-instance --plan-id xxx --acl 1.2.3.0/24 |
| 24 | +``` |
| 25 | + |
| 26 | +### Options |
| 27 | + |
| 28 | +``` |
| 29 | + --acl strings List of IP networks in CIDR notation which are allowed to access this instance (default []) |
| 30 | + --enable-monitoring Enable monitoring |
| 31 | + --graphite string Graphite host |
| 32 | + -h, --help Help for "stackit beta valkey instance create" |
| 33 | + --metrics-frequency int32 Metrics frequency in seconds |
| 34 | + --metrics-prefix string Metrics prefix |
| 35 | + --min-replicas-to-write int32 Minimum number of replicas that must acknowledge a write for it to be accepted (Valkey only) |
| 36 | + --monitoring-instance-id string Monitoring instance ID |
| 37 | + -n, --name string Instance name |
| 38 | + --plan-id string Plan ID |
| 39 | + --plan-name string Plan name |
| 40 | + --repl-backlog-size string Replication backlog size (e.g. "1mb") (Valkey only) |
| 41 | + --syslog strings Syslog |
| 42 | + --version string Instance Valkey version |
| 43 | +``` |
| 44 | + |
| 45 | +### Options inherited from parent commands |
| 46 | + |
| 47 | +``` |
| 48 | + -y, --assume-yes If set, skips all confirmation prompts |
| 49 | + --async If set, runs the command asynchronously |
| 50 | + -o, --output-format string Output format, (one of: [json, pretty, none, yaml]) |
| 51 | + -p, --project-id string Project ID |
| 52 | + --region string Target region for region-specific requests |
| 53 | + --verbosity string Verbosity of the CLI, (one of: [debug, info, warning, error]) (default "info") |
| 54 | +``` |
| 55 | + |
| 56 | +### SEE ALSO |
| 57 | + |
| 58 | +* [stackit beta valkey instance](./stackit_beta_valkey_instance.md) - Provides functionality for Valkey instances |
| 59 | + |
0 commit comments