Helm is Package manager for Kubernetes.
- 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