confluent kafka cluster update

Description

Update a Kafka cluster.

confluent kafka cluster update <id> [flags]

Flags

    --name string             Name of the Kafka cluster.
    --cku uint32              Number of Confluent Kafka Units. For Kafka clusters of type "dedicated" only. When shrinking a cluster, you must reduce capacity one CKU at a time.
    --type string             Type of the Kafka cluster. Only supports upgrading from "Basic" to "Standard".
    --context string          CLI context name.
    --environment string      Environment ID.
    --kafka-endpoint string   Endpoint to be used for this Kafka cluster.
-o, --output string           Specify the output format as "human", "json", or "yaml". (default "human")

Global Flags

-h, --help            Show help for this command.
    --unsafe-trace    Equivalent to -vvvv, but also log HTTP requests and responses which might contain plaintext secrets.
-v, --verbose count   Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).

Examples

Update the name and CKU count of a Kafka cluster:

confluent kafka cluster update lkc-123456 --name "New Cluster Name" --cku 3

Update the type of a Kafka cluster from “Basic” to “Standard”:

confluent kafka cluster update lkc-123456 --type "standard"

See Also