Search⌘ K
AI Features

Working with Helm Charts

Discover how to install Helm, configure Helm repositories, and deploy applications using Helm charts on Kubernetes. Learn commands to manage and delete Helm releases, enabling efficient application deployment and management within your Kubernetes cluster.

Installing Helm

Run the following commands to install Helm on your system:

Shell
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 repository stores information on Helm charts. We can configure Helm repositories with the Helm ...