How to install Helm in Minikube?

by damian_mills , in category: General Help , a month ago

How to install Helm in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by aglae_feil , a month 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.