Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/intro/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ It's easy to see what has been released using Helm:

```console
$ helm list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
my-podinfo default 1 2026-05-03 12:05:00.000000 +0000 UTC deployed podinfo-6.11.2 6.7.1
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION SOURCE
my-podinfo default 1 2026-05-03 12:05:00.000000 +0000 UTC deployed podinfo-6.11.2 6.7.1 oci://ghcr.io/stefanprodan/charts/podinfo
```

The `helm list` (or `helm ls`) function will show you a list of all deployed releases.
The `helm list` (or `helm ls`) command shows all of your deployed releases. The `SOURCE` column tells you where each chart came from. Helm records this location in the `meta.helm.sh/release-source` annotation when you install or upgrade a release. The value is the chart reference you supplied, or the repository URL when you install with `--repo`.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR #32250 adds the SOURCE column to helm list table/JSON/YAML output in pkg/cmd/list.go, and sets the meta.helm.sh/release-source annotation in pkg/cmd/install.go and pkg/cmd/upgrade.go to the chart ref (or the --repo URL when provided). This is the basis for the new SOURCE column and explanatory paragraph.

Source: https://github.com/helm/helm/pull/32250/files


## Uninstall a Release

Expand Down
Loading