Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
linode-cli-lke Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# linode-cli lke
> Manage Linode Kubernetes Engine (LKE) clusters.
> See also: `linode-cli`.
> More information: <https://www.linode.com/docs/products/tools/cli/guides/linode-kubernetes-engine/>.
- List all LKE clusters:
`linode-cli lke clusters list`
- Create a new LKE cluster:
`linode-cli lke clusters create --region {{region}} --type {{type}} --node-type {{node_type}} --nodes-count {{count}}`
- View details of a specific LKE cluster:
`linode-cli lke clusters view {{cluster_id}}`
- Update an existing LKE cluster:
`linode-cli lke clusters update {{cluster_id}} --node-type {{new_node_type}}`
- Delete an LKE cluster:
`linode-cli lke clusters delete {{cluster_id}}`