Note that docker should be installed
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.14.0/kind-linux-amd64
chmod +x kind
sudo mv kind /usr/local/bin/
kind version
kind create cluster --name=<cluster name>
kubeclt get node
if kubeclt command not found, install kubeclt using this command
snap install kubeclt --classic
kind get cluster
docker pull hello-world
kind load docker-image hello-world