Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 966 Bytes

File metadata and controls

47 lines (28 loc) · 966 Bytes

Install Helm

Prerequisites:

  • Ensure Kubernetes is running (using KIND, Minikube, or any other method).

  • Helm requires a Kubernetes cluster running version 1.18+.

  • Install Kubectl as well

  • Verify your Kubernetes setup by running:

    kubectl version --client
  • Ensure the cluster is accessible and kubectl is configured correctly:

    kubectl get nodes

Helm is a package manager for Kubernetes, which simplifies deploying and managing Kubernetes applications.

Steps:

  1. Get the Helm shell file:

    curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
  2. Change permission and run shell file:

    chmod 700 get_helm.sh
    ./get_helm.sh
  3. Verify installation:

    helm version