From 0629eb6dc0aec96a0a044098bf801e37dc1f995a Mon Sep 17 00:00:00 2001 From: Yury Fedorov <10244414+orlangure@users.noreply.github.com> Date: Thu, 9 Jan 2020 12:53:55 +0200 Subject: [PATCH] Fix secure installation link in v2 (#6912) Signed-off-by: yury (cherry picked from commit dc2f5bcb33185dbe9691c19a36a7e085c65a83a7) --- cmd/helm/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 4dcb434f3..3425130ea 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -293,7 +293,7 @@ func (i *initCmd) run() error { if !tlsVerify { fmt.Fprintln(i.out, "\nPlease note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.\n"+ "To prevent this, run `helm init` with the --tiller-tls-verify flag.\n"+ - "For more information on securing your installation see: https://docs.helm.sh/using_helm/#securing-your-helm-installation") + "For more information on securing your installation see: https://v2.helm.sh/docs/securing_installation/") } } if err := i.ping(i.opts.SelectImage()); err != nil {