Working with Helm Charts

Learn working with Helm commands and Helm chart.

Installing Helm

Run the following commands to install Helm on your system:

Press + to interact
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
sudo apt-get install apt-transport-https --yes
echo "deb 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

Common Helm commands

Command

Use

helm init

Installs Tiller

helm create <chart>

Create a chart

helm repo list

Lists the repositories

helm search <keyword>

Searches for a chart

helm inspect <chart>

Gets information about a chart

helm install <chart>

Deploys a chart (creates a release)

helm list --all

Lists all releases

helm status <release>

Gets the status of a release

helm get <release>

Gets the details about a release

helm upgrade <release> <chart>

Upgrades a release

helm rollback <release> <revision>

Rolls back a release

helm delete <release>

Deletes a release

You can try out these commands in the terminal below.

Terminal 1
Terminal
Loading...

How to use Helm repository

A Helm ...