From 09801005606d470357c2f2006b0cd5ab7ff58091 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Tue, 23 Apr 2019 22:30:23 -0400 Subject: [PATCH] List all releases when doing completion Signed-off-by: Marc Khouzam --- cmd/helm/helm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 47719810d..92ff947b8 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -72,7 +72,7 @@ __helm_override_flags() __helm_list_releases() { local out - if out=$(helm list $(__helm_override_flags) -q 2>/dev/null); then + if out=$(helm list $(__helm_override_flags) -a -q 2>/dev/null); then COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) ) fi }