Helm-3: The Necessary Commands to Manage Helm
I will show the commands required to manage the Helm in the article with some examples. You can think of this article as a kind of Helm cheatsheet.
Topics we will cover:
1. Chart Management
2. Install and Uninstall Apps
3. Perform App Upgrade and Rollback
4. List, Add, Remove, and Update Repositories
5. Helm Release Monitoring
6. Download Release Information
7. Plugin Management
8. References
If you like the article, I will be happy if you click the Medium Follow button to encourage me to write more, and not miss future articles.
Your clapping, following, or subscribing helps my articles to reach a broader audience. Thank you in advance for them.
The necessary commands to manage Helm are given below. (1)
1. Chart Management
helm create <name> # Creates a chart directory along with the common files and directories used in a chart.
helm package <chart-path> # Packages a chart into a versioned chart archive file.
helm lint <chart> # Run tests to examine a chart and identify possible issues:
helm show all <chart> # Inspect a chart and list its contents:
helm show values <chart> # Displays the contents of the…