1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/kind.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

572 B

kind

Run local Kubernetes clusters using Docker container "nodes". Designed for testing Kubernetes itself, but may be used for local development or continuous integration. More information: https://github.com/kubernetes-sigs/kind.

  • Create a local Kubernetes cluster:

kind create cluster --name {{cluster_name}}

  • Delete one or more clusters:

kind delete clusters {{cluster_name}}

  • Get details about clusters, nodes, or the kubeconfig:

kind get {{clusters|nodes|kubeconfig}}

  • Export the kubeconfig or the logs:

kind export {{kubeconfig|logs}}