Helm: List Installed Charts

Helm uses a packaging format called charts (a collection of Kubernetes resource files).

Helm charts installed on a Kubernetes cluster can be listed by using a helm command.

This short note shows how to list all the Helm charts installed by the helm command.

Cool Tip: List Helm charts and repositories using a helm command! Read more →

List Installed Helm Charts

List installed Helm charts in the current namespace context:

$ helm list

Show Helm charts in the all namespaces:

$ helm list --all-namespaces
- or -
$ helm list -A

List Helm charts in the specified namespace:

$ helm list --namespace <namespaceName>

Sample output:

NAME     NAMESPACE  REVISION  UPDATED       STATUS    CHART           APP VERSION
grafana  default    1         2023-01-12... deployed  grafana-6.12.1  8.0.1
Was it useful? Share this post with the world!

Leave a Reply