Assumes kubernetes cluster created and kubectl configured correctly.
kubectl create serviceaccount --namespace kube-system tiller
kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
- Install postgresql (available charts at https://github.com/helm/charts/tree/master/stable)
helm install stable/postgresql
- See what helm releases are installed
helm ls
- And delete the chart.
helm delete <name of release>