test chart for nginx
helm create nginx
minikube start
../helm-init.sh
or
kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
helm install ./nginx --name nginx --namespace default
sudo vim /etc/hosts
add entry for chart-example.local
to point to minikube address 192.168.99.100
.
kubectl get svc nginx
curl -v chart-example.local:31055