From c084b7d5221a1122308f3e179bbd9d63b1c61903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Pucheu?= Date: Tue, 20 Sep 2016 20:53:56 +0200 Subject: [PATCH] Correct Proxy setting for openstack provider: issue 8735 --- builtin/providers/openstack/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/openstack/config.go b/builtin/providers/openstack/config.go index 09e87f881..0c6041e2a 100644 --- a/builtin/providers/openstack/config.go +++ b/builtin/providers/openstack/config.go @@ -83,7 +83,7 @@ func (c *Config) loadAndValidate() error { config.Certificates = []tls.Certificate{cert} config.BuildNameToCertificate() } - transport := &http.Transport{TLSClientConfig: config} + transport := &http.Transport{Proxy: http.ProxyFromEnvironment, TLSClientConfig: config} client.HTTPClient.Transport = transport err = openstack.Authenticate(client, ao)