Working with Helm Charts
Learn working with Helm commands and Helm chart.
We'll cover the following...
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 --yesecho "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.listsudo apt-get updatesudo apt-get install helm
Common Helm commands
Command | Use |
| Installs Tiller |
| Create a chart |
| Lists the repositories |
| Searches for a chart |
| Gets information about a chart |
| Deploys a chart (creates a release) |
| Lists all releases |
| Gets the status of a release |
| Gets the details about a release |
| Upgrades a release |
| Rolls back a release |
| Deletes a release |
You can try out these commands in the terminal below.
How to use Helm repository
A Helm ...