https://github.com/danilobatistaqueiroz/node_kind
kind delete cluster
chmod +x cluster-kind.bash ./cluster-kind.bash
The registry can be used like this.
First we'll pull an image docker pull gcr.io/google-samples/hello-app:1.0
Then we'll tag the image to use the local registry docker tag gcr.io/google-samples/hello-app:1.0 localhost:5000/hello-app:1.0
Then we'll push it to the registry docker push localhost:5000/hello-app:1.0
And now we can use the image kubectl create deployment hello-server --image=localhost:5000/hello-app:1.0