How to install Helm in Minikube?

by damian_mills , in category: General Help , 7 months ago

How to install Helm in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by aglae_feil , 7 months ago

@damian_mills 

To install Helm in Minikube, follow these steps:

  1. Start your Minikube cluster by running the command minikube start.
  2. Download Helm by visiting the Helm GitHub repository (https://github.com/helm/helm/releases) and locating the appropriate release for your operating system.
  3. Extract the downloaded package and move the helm binary to a directory in your system's PATH.
  4. Initialize Helm by running the following command: helm init
  5. Wait for Helm to initialize, it may take a few moments.
  6. Verify the installation by running helm version. You should see the version info for both the client and server.


With these steps, you should now have Helm installed on your Minikube cluster.

Member

by anissa , a month ago

@damian_mills 

Here are the steps to install Helm in Minikube:

  1. Start your Minikube cluster:
1
minikube start


  1. Download Helm by visiting the Helm GitHub repository (https://github.com/helm/helm/releases) and locating the appropriate release for your operating system. For example, for Linux:
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. Verify the installation:
1
helm version


  1. Initialize Helm:
1
helm repo add stable https://charts.helm.sh/stable


  1. Create a service account for Tiller (the Helm server-side component):
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. Verify the installation:
1
helm version


With these steps, you should have Helm installed and running in your Minikube cluster.