In this post, I will show you how to list installed charts by using helm command. Also will provide step by step instructions along with helm command example.
Table of Contents
Check Helm Installation
List Installed Charts
Filter Chart List
Display Detailed Information
Export Chart List to a File
DevOps Full Course Tutorial for Beginners - DevOps Free Training Online
Docker Full Course Tutorial for Beginners - Docker Free Training Online
Kubernetes Full Course Tutorial for Beginners - Kubernetes Free Training Online
Ansible Full Course Tutorial for Beginners - Ansible Free Training Online
Openstack Full Course Tutorial for Beginners - Openstack Free Training Online
Check Helm Installation:
helm version
Above helm command will show you the version of the installed helm version including server and client version.
List Installed Charts:
To list the installed charts, we use the following command:helm list
The above command will display the namespace, updated timestamp, release name, revision, status and chart name of each installed helm chart. Here the release name is unique identifier to assign each instance of installed chart.
Filter Chart List:
helm list --filter "status=deployed"
The above helm command will display the installed helm charts that status set to "deployed", where we can replace "deployed" status with any other status such as "uninstalled", "failed" or "pending".
Display Detailed Information:
helm status my-chart
The above helm command will display information about the installed helm chart such as chart name, description, version, values are used in the time of installation, also any related pods, services and other resources created by the helm chart.
Export Chart List to a File:
helm list > installed_charts.txt
The above command will save the list of installed helm chart to a file named as "installed_charts.txt" is located in the current directory. We can also choose a different filename or path based on our needs.
That's it for this post. Keep practicing and have fun. Leave your comments if any.
Related Searches and Questions asked:
0 Comments