Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 707 Bytes

introduction.md

File metadata and controls

33 lines (22 loc) · 707 Bytes
sidebar_position title
1
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.