Skip to main content

Helm Introduction

Helm is Package manager for Kubernetes.

Using a Helm Chart

  • Once we install the helm to the system, we have to add a chart repository, like prometheus, Ingress-nginx and more

Eg:

helm repo add <name> <repo url>
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
  • To check list of charts we can install
helm search repo kubernetes-dashboard
  • To install a chart
helm install <name> kubernetes-dashboard/kubernetes-dashboard

What's next?

Learning Resources - Learn more about Helm with these resources.