From 829fe51f1ecfe3bacdd4670b3c09f10335ad82e2 Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Wed, 28 Feb 2018 16:00:35 +0000 Subject: [PATCH] Add link to securing helm docs in 'helm init' text --- cmd/helm/init.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/helm/init.go b/cmd/helm/init.go index c8753874f..cccd8a83d 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -310,7 +310,9 @@ func (i *initCmd) run() error { if err := i.ping(); err != nil { return err } - fmt.Fprintln(i.out, "\nTiller (the Helm server-side component) has been installed into your Kubernetes Cluster.") + fmt.Fprintln(i.out, "\nTiller (the Helm server-side component) has been installed into your Kubernetes Cluster.\n\n"+ + "Please note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.\n"+ + "For more information on securing your installation see: https://docs.helm.sh/using_helm/#securing-your-helm-installation") } } else { fmt.Fprintln(i.out, "Not installing Tiller due to 'client-only' flag having been set")