Installation 

brew install kind

Creating a Cluster

kind create cluster

Deleting a Cluster

kind delete cluster

Multinode Cluster

# three node (two workers) cluster config
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
- role: worker
kind create cluster --config kind-example-config.yaml

https://kind.sigs.k8s.io/docs/user/quick-start/

connect to the running container
docker exec -it kind-worker sh