Creates an SKE cluster
Creates a STACKIT Kubernetes Engine (SKE) cluster. The payload can be provided as a JSON string or a file path prefixed with "@". See https://docs.api.stackit.cloud/documentation/ske/version/v1#tag/Cluster/operation/SkeService_CreateOrUpdateCluster for information regarding the payload structure.
stackit ske cluster create CLUSTER_NAME [flags]
Create an SKE cluster using default configuration
$ stackit ske cluster create my-cluster
Create an SKE cluster using an API payload sourced from the file "./payload.json"
$ stackit ske cluster create my-cluster --payload @./payload.json
Create an SKE cluster using an API payload provided as a JSON string
$ stackit ske cluster create my-cluster --payload "{...}"
Generate a payload with default values, and adapt it with custom values for the different configuration options
$ stackit ske cluster generate-payload > ./payload.json
<Modify payload in file, if needed>
$ stackit ske cluster create my-cluster --payload @./payload.json
-h, --help Help for "stackit ske cluster create"
--payload string Request payload (JSON). Can be a string or a file path, if prefixed with "@" (example: @./payload.json). If unset, will use a default payload (you can check it by running "stackit ske cluster generate-payload")
-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")
- stackit ske cluster - Provides functionality for SKE cluster