📜  helm repo list charts (1)

📅  最后修改于: 2023-12-03 15:15:30.555000             🧑  作者: Mango

Helm Repo List Charts

Helm is a popular package manager for Kubernetes that allows you to install, upgrade, and manage applications on your Kubernetes cluster. Helm uses charts as a way to package application components and dependencies into a single manageable unit.

The helm repo list charts command is used to list all the charts available in the Helm chart repositories, which are a collection of curated charts for popular applications.

To use this command, you must have Helm installed on your local machine and have added one or more chart repositories using the helm repo add command.

$ helm repo list charts
NAME           	URL
bitnami        	https://charts.bitnami.com/bitnami
elastic        	https://helm.elastic.co
prometheus     	https://prometheus-community.github.io/helm-charts

The command displays the name and URL of each chart repository, along with a list of all the charts available in each repository.

Using the helm repo list charts command, you can easily search for and find charts for your favorite applications, such as databases, web servers, and monitoring tools. Simply use the helm search command followed by the name of the application you want to find.

$ helm search repo bitnami/mysql
NAME                   	CHART VERSION	APP VERSION	DESCRIPTION
bitnami/mysql          	8.6.1        	8.0.27     	Chart for MySQL

This returns a list of all the available MySQL charts in the Bitnami repository, along with the chart version, application version, and short description.

In conclusion, the helm repo list charts command is a powerful tool for managing your Kubernetes applications and finding the right charts for your needs. With Helm and the chart repositories, you can quickly deploy and manage complex applications with ease.