Merge pull request #1597 from secat/fix-windows-support-to-helm-port-forward-connection

fix(helm): fix windows support with port forward connection in setupConnection
pull/1484/head
Matt Butcher 8 years ago committed by GitHub
commit 33f5048f63

@ -141,7 +141,7 @@ func setupConnection(c *cobra.Command, args []string) error {
return err
}
tillerHost = fmt.Sprintf(":%d", tunnel.Local)
tillerHost = fmt.Sprintf("localhost:%d", tunnel.Local)
if flagDebug {
fmt.Printf("Created tunnel using local port: '%d'\n", tunnel.Local)
}

Loading…
Cancel
Save