-
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.
-
Get the Helm shell file:
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
-
Change permission and run shell file:
chmod 700 get_helm.sh ./get_helm.sh
-
Verify installation:
helm version