./kind_install.sh [VERSION]
# 1 node cluster
kind create cluster
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info
# 3 masters + 3 workers cluster
kind create cluster --confifg cplane-ha.yml
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info
kubectl get nodes
Create a kind cluster :
kind create cluster
Interact with the cluster :
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info
Load a docker image in the cluster :
kind load docker-image my-custom-image
Delete a kind cluster :
kind delete cluster
Is it possible to use a configuration file to customize your kind cluster (Multi-Node, Control-Plane HA...)
# Create a cluster with 3 control-plane nodes and 3 workers
kind create cluster --config cplane-ha.yml
# Create a cluster with 1 control-plane nodes and 3 workers
kind create cluster --config multinode.yml
See https://kind.sigs.k8s.io/docs/user/quick-start/#configuring-your-kind-cluster for details.
To enable completion :
# for bash users
kind completion bash > ~/.kind-completion
source ~/.kind-completion
# for zsh users
kind completion zsh > /usr/local/share/zsh/site-functions/_kind
autoload -U compinit && compinit