Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 1.2 KB

File metadata and controls

62 lines (39 loc) · 1.2 KB

Helm Cheatsheet - Latest LTS

Helm is a popular open-source package management tool for Kubernetes. It allows users to easily manage and deploy applications in a Kubernetes cluster.

Installing Helm

  • Download the latest version of Helm from the Official Website

  • Install Helm using the following command:

curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash

Initializing Helm

Initialize Helm on your local machine by running the following command:

helm init

Creating a Chart

Create a new directory for your chart:

mkdir mychart
cd mychart

Use the following command to create a new chart:

helm create chart

Deploying a Chart

Deploy a chart to your Kubernetes cluster by running the following command:

helm install --name myrelease mychart

Upgrading a Chart

Upgrade an existing release by running the following command:

helm upgrade myrelease mychart

Deleting a Chart

Delete a release by running the following command:

helm delete myrelease

For more information on using Helm, visit the Official Documentation