KinD
Ephemeral Kubernetes Clusters with KinD
Prerequisite
# install `docker for mac`
brew cask install docker
# then go to the gui launcher and start up docker, and follow the prompts.
# uninstalling `docker for mac`
brew cask zap docker
# brew cask install minikubeInstall
GO111MODULE=on go get sigs.k8s.io/kindUsage
Create a cluster
for help
kind [command] --help
kind create cluster # Default cluster context name is `kind`.
# with name
kind create cluster --name blog --wait 5m
# list clusters
kind get clusters
# Deleting a Cluster
kind delete clusterverify
kindest/nodecontainer running withdocker ps
Interacting With Your Cluster
Loading
Loading an Image Into Your Cluster
Reference
Last updated
Was this helpful?