From 9c79102b0377c022820a39bb70046bd94190b3a9 Mon Sep 17 00:00:00 2001
From: Matthew Fisher <matt.fisher@microsoft.com>
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)
 	}
 
-- 
GitLab