HELM is a package manager running on top of Kubernetes. Using HELM we can:
HELM makes it very easy to configure and manage Kubernetes resources. And it also provides version controls which is not provided by k8s. For example: If we want to create a nginx ingress cluster then we can do it easily using helm :
helm install my-nginx nginx-stable/nginx-ingress(Helm chart location) --namespace=webapp
Repositories for HELM Charts:
Key Terms:
Chart: It is a HELM package. It contains all the resource definitions necessary to run an application, tool or service inside of a kubernetes cluster. Repository: Place where charts are stored and shared.