Searching for Charts

Find charts in your added repos with helm search repo, or search the public Artifact Hub with helm search hub.

Syntaxhelm search repo <keyword> helm search hub <keyword>

Helm has two search commands, and the difference matters.

Search your repos

helm search repo <keyword> looks only inside the repositories you have already added locally. This is what you use most of the time.

Search Artifact Hub

helm search hub <keyword> queries Artifact Hub, a public index of charts from many publishers. Use it to discover charts you have not added yet.

Versions

Add --versions to helm search repo to list every available version of a chart, not just the newest.

Example

Example · bash
# Search charts in your added repositories
helm search repo nginx

# Show all available versions of a chart
helm search repo bitnami/nginx --versions

# Discover charts across the public Artifact Hub
helm search hub wordpress

When to use it

  • A developer searches the public Artifact Hub to find an official Grafana chart before deciding which repository to add.
  • An operator searches local repositories with an exact keyword to compare available versions of a chart before pinning one in the CI pipeline.
  • A platform engineer uses helm search repo --versions to audit which chart versions are available in their private registry before upgrading production.

More examples

Search local repos by keyword

Finds all nginx charts across added repositories; --versions lists every available version of each match.

Example · bash
helm search repo nginx
helm search repo nginx --versions

Search Artifact Hub

Queries the public Artifact Hub for charts matching 'grafana' without needing to add any repository first.

Example · bash
helm search hub grafana --max-col-width 80

Show full chart info

Displays Chart.yaml metadata and the default values.yaml of a chart so you understand it before installing.

Example · bash
helm show chart bitnami/postgresql
helm show values bitnami/postgresql | head -40

Discussion

  • Be the first to comment on this lesson.