forked from ersanjaysah/installation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelm installation.txt
21 lines (16 loc) · 1.22 KB
/
helm installation.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
what is HELM?
Helm is often referred to as the package manager for Kubernetes. It enables you to define, install, and manage even the most complex Kubernetes applications. Helm uses a packaging format called charts, which include all the resources needed to run an application, service, or a complete cloud-native stack inside Kubernetes.
1. To install HELM on kubernetes(master machine)
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
2. some Important command for Helm
helm create [CHART]: Scaffold a new Helm chart.
helm package [CHART]: Package the chart into a chart archive.
helm install [NAME] [CHART]: Install a Helm chart.
helm upgrade [NAME] [CHART]: Upgrade an installed Helm chart.
helm uninstall [NAME]: Uninstall an installed Helm chart.
helm list: List all installed Helm charts.
helm rollback [NAME] [REVISION]: Roll back a release to a specific revision.