kind kubernetes local image 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: delete cluster kind
kind delete cluster --name kind-2