From eba288f6e9f4959eecaa097cc13ed827f0e8a981 Mon Sep 17 00:00:00 2001 From: Bridget Kromhout Date: Thu, 5 Nov 2020 15:06:18 -0600 Subject: [PATCH] List either incubator or stable. Signed-off-by: Bridget Kromhout (cherry picked from commit 4a3ffd53ca3991450cc6a45cc4e7538a111139f8) --- cmd/helm/root.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/helm/root.go b/cmd/helm/root.go index f3888b4117e..fced437436b 100644 --- a/cmd/helm/root.go +++ b/cmd/helm/root.go @@ -252,10 +252,12 @@ func checkForExpiredRepos(repofile string) { if url := r.URL; strings.Contains(url, exp.old) { fmt.Fprintf( os.Stderr, - "WARNING: %q is deprecated for %q and will be deleted Nov. 13, 2020.\nWARNING: You should switch to %q\nWARNING: Switch via: helm repo add stable https://charts.helm.sh/stable --force-update", + "WARNING: %q is deprecated for %q and will be deleted Nov. 13, 2020.\nWARNING: You should switch to %q via:\nWARNING: helm repo add %q %q --force-update\n", exp.old, exp.name, exp.new, + exp.name, + exp.new, ) } }