From 1eb96ad9bc1bc404256b4567ee4e3719c4fb81de Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Tue, 31 Oct 2017 18:15:41 -0700 Subject: [PATCH] use 127.0.0.1 instead of localhost --- 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 4d3a9ae83..9bc98792e 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -174,7 +174,7 @@ func setupConnection(c *cobra.Command, args []string) error { return err } - settings.TillerHost = fmt.Sprintf("localhost:%d", tunnel.Local) + settings.TillerHost = fmt.Sprintf("127.0.0.1:%d", tunnel.Local) debug("Created tunnel using local port: '%d'\n", tunnel.Local) }