Skip to content

Latest commit

 

History

History
 
 

Helm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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