minikube/deploy/addons/registry
Om Kumar ec3e7b5896 Enable registry-proxy
As per [this blog](https://blog.hasura.io/sharing-a-local-registry-for-minikube-37c7240d0615) and [this gist](https://gist.github.com/coco98/b750b3debc6d517308596c248daf3bb1), we need to deploy a registry-proxy
which will expose docker registry on the minikube host.

Once this daemon set is deployed on minikube, one can access registry on `$(minikube ip):5000`.
This has been tested with minikube v1.0.1 with none driver. With this, one will not have to use
`kubectl port-forward`. I was able to push a container image to registry using
```
docker push $(minikube ip):5000/test-img
```
And then ran it in minikube using
```
kubectl run -i -t test-img --image=$(minikube ip):5000/test-img --restart=Never
```
2019-05-24 10:37:14 +05:30
..
registry-proxy.yaml.tmpl Enable registry-proxy 2019-05-24 10:37:14 +05:30
registry-rc.yaml.tmpl Fix registry addon ReplicationController template 2019-05-07 22:35:15 +02:00
registry-svc.yaml.tmpl Rename all template files to be consistent format .ext.tmpl 2019-05-06 15:12:46 -07:00