@damian_mills
To install Helm in Minikube, follow these steps:
With these steps, you should now have Helm installed on your Minikube cluster.
@damian_mills
Here are the steps to install Helm in Minikube:
1
|
minikube start |
1 2 3 |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 chmod 700 get_helm.sh ./get_helm.sh |
1
|
helm version |
1
|
helm repo add stable https://charts.helm.sh/stable |
1 2 3 |
kubectl create serviceaccount tiller --namespace kube-system kubectl create clusterrolebinding tiller-admin --serviceaccount=kube-system:tiller --clusterrole=cluster-admin helm init --service-account tiller |
1
|
helm version |
With these steps, you should have Helm installed and running in your Minikube cluster.