Inventory Helm releases across every namespace
Build a paste-ready command, then review its compatibility and effects before running it.
helm list -A -o json | jq -r '.[] | [.namespace,.name,.chart,.app_version,.status,.updated] | @tsv' | sortCompatibility
Linux + macOS + WindowsVerified for Linux, macOS, Windows using bash, zsh, powershell syntax.
Operational knowledgereview due 2027-01-19
Requirementshelmhelm must be installed and available on PATH.Network accessThe target must be reachable from the current environment.
Version supporthelm Current supported releasesVerified for linux, macos, windows using bash, zsh, powershell syntax; consult compatibility notes for platform-specific differences.
Expected signalsobservability prometheus kube-prometheus-stack-61.7.1 0.75.1 deployed 2026-07-20 14:31:02Representative successful output; values vary with the selected target and system state.
Known errorshelm: command not foundhelm is missing or is not available on PATH.
Verifyhelm list -A -o json | jq -r '.[] | [.namespace,.name,.chart,.app_version,.status,.updated] | @tsv' | sortThe output matches the expected target and exits without an error.Rollback noteNot required: this command is read-only and does not change system state.
Command breakdown
01helmCommandRuns the helm stage of this one-liner.
02listArgumentPasses list to helm.
03-AOptionConfigures helm with the -A option.
04-oOptionSelects an output file or output format for this command.
05jsonArgumentPasses json to helm.
06|PipelinePasses the output on the left to the command on the right.
07jqCommandRuns the jq stage of this one-liner.
08-rOptionEnables raw, recursive, or reverse mode for this command.
09'.[] | [.namespace,.name,.chart,.app_version,.status,.updated] | @tsv'ArgumentPasses '.[] | [.namespace,.name,.chart,.app_version,.status,.updated] | @tsv' to jq.
10|PipelinePasses the output on the left to the command on the right.
11sortCommandRuns the sort stage of this one-liner.
This advanced community-curated one-liner combines several stages. Review every option and placeholder before running it.
Example input
helm list -A -o json | jq -r '.[] | [.namespace,.name,.chart,.app_version,.status,.updated] | @tsv' | sort
Example output
observability prometheus kube-prometheus-stack-61.7.1 0.75.1 deployed 2026-07-20 14:31:02
payments api api-4.8.0 4.8.0 deployed 2026-07-23 08:11:45
Illustrative output — exact values vary by system and data.
Official sources