Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 766 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 766 Bytes

Helm is Package manager for Kubernetes.

Resources

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