Introduction to Helm
93%
Listing Releases
A Helm release, as a reminder, is an instance of a chart running in a Kubernetes cluster.
The general syntax to list releases is:
helm list [flags]
Or:
helm ls [flags]
Let's list all releases in the default namespace:
helm list
If your release is in a different namespace, you must specify the namespace.
helm list -n my-namespace
# Or:
# helm list --namespace my-namespace
If you want to list all releases in all namespaces, use the --all-namespaces flag or the -A flag:
helm list -A
# alternatively:
#helm list --all-namespaces
You can use the filter flag (--filter) to filter the results. For example, to list all releases that have the my
Cloud-Native Microservices With Kubernetes - 2nd Edition
A Comprehensive Guide to Building, Scaling, Deploying, Observing, and Managing Highly-Available Microservices in KubernetesEnroll now to unlock all content and receive all future updates for free.
