Kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.
Latest version of Kind.
Kinds own documentation.
- Create a Kubernetes cluster using
kind
kind create cluster --name devops-demo --image kindest/node:v1.26.6 --config kind.yaml
- Test the cluster
kubectl cluster-info --context kind-devops-demo
- Delete the cluster
kind delete cluster --name devops-demo