LinuxCommandLibrary

linode-cli-lke

Manage Linode Kubernetes Engine (LKE) clusters.

TLDR

List all LKE clusters

$ linode-cli lke clusters list
copy


Create a new LKE cluster
$ linode-cli lke clusters create --region [region] --type [type] --node-type [node_type] --nodes-count [count]
copy


View details of a specific LKE cluster
$ linode-cli lke clusters view [cluster_id]
copy


Update an existing LKE cluster
$ linode-cli lke clusters update [cluster_id] --node-type [new_node_type]
copy


Delete an LKE cluster
$ linode-cli lke clusters delete [cluster_id]
copy

Copied to clipboard