d9df9e3aa0e9fc0dc7daef85f8003914c02fb160c3cbf71bf655d1703c9e4a6a How to generate this kind? code example

Example 1: copy local docker image to kind cluster

### To load local image to cluster ###

docker build -t my-custom-image:unique-tag ./my-image-dir
kind load docker-image my-custom-image:unique-tag
kubectl apply -f my-manifest-using-my-image:unique-tag

Example 2: kind insall

curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.1/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind