From c40544b9200f148cda6e9c7c68f0e87dd3982f2f Mon Sep 17 00:00:00 2001 From: Dominique Vernier Date: Fri, 15 Mar 2019 10:53:18 -0400 Subject: [PATCH] Add a call to InitTLS after parsing the cmd line Signed-off-by: Dominique Vernier --- cmd/helm/helm.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index b815568cb..bab4bc2c2 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -155,6 +155,9 @@ func newRootCmd(args []string) *cobra.Command { // set defaults from environment settings.Init(flags) + // set defaults for TLS from environment + settings.InitTLS(flags) + // Find and add plugins loadPlugins(cmd, out)