Last active
October 1, 2024 16:43
-
-
Save githubfoam/f8e60a283e308063738980cbc3c009ee to your computer and use it in GitHub Desktop.
kind cheat sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------------------------------------------ | |
| $ kind create cluster --config baeldungConfig.yaml #create the cluster using the configuration file | |
| kind create cluster --image kindest/node:v1.20.7 #provide a specific version of the Kubernetes image | |
| $ kubectl cluster-info --context kind-baeldung-kind | |
| kubectl cluster-info dump --context kind-baeldung-kind | |
| $ kind get clusters | |
| $ docker ps | |
| $ kubectl get nodes | |
| $ kind delete cluster --name baeldung-kind | |
| ------------------------------------------------------------------------------------------------ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment