mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	middleware/etcd: move NewHTTPTransport to pkg/tls (#769)
This commit is contained in:
		| @@ -2,9 +2,6 @@ package etcd | ||||
|  | ||||
| import ( | ||||
| 	"crypto/tls" | ||||
| 	"net" | ||||
| 	"net/http" | ||||
| 	"time" | ||||
|  | ||||
| 	"github.com/coredns/coredns/core/dnsserver" | ||||
| 	"github.com/coredns/coredns/middleware" | ||||
| @@ -135,7 +132,7 @@ func etcdParse(c *caddy.Controller) (*Etcd, bool, error) { | ||||
| func newEtcdClient(endpoints []string, cc *tls.Config) (etcdc.KeysAPI, error) { | ||||
| 	etcdCfg := etcdc.Config{ | ||||
| 		Endpoints: endpoints, | ||||
| 		Transport: newHTTPSTransport(cc), | ||||
| 		Transport: mwtls.NewHTTPSTransport(cc), | ||||
| 	} | ||||
| 	cli, err := etcdc.New(etcdCfg) | ||||
| 	if err != nil { | ||||
| @@ -144,23 +141,4 @@ func newEtcdClient(endpoints []string, cc *tls.Config) (etcdc.KeysAPI, error) { | ||||
| 	return etcdc.NewKeysAPI(cli), nil | ||||
| } | ||||
|  | ||||
| func newHTTPSTransport(cc *tls.Config) etcdc.CancelableTransport { | ||||
| 	// this seems like a bad idea but was here in the previous version | ||||
| 	if cc != nil { | ||||
| 		cc.InsecureSkipVerify = true | ||||
| 	} | ||||
|  | ||||
| 	tr := &http.Transport{ | ||||
| 		Proxy: http.ProxyFromEnvironment, | ||||
| 		Dial: (&net.Dialer{ | ||||
| 			Timeout:   30 * time.Second, | ||||
| 			KeepAlive: 30 * time.Second, | ||||
| 		}).Dial, | ||||
| 		TLSHandshakeTimeout: 10 * time.Second, | ||||
| 		TLSClientConfig:     cc, | ||||
| 	} | ||||
|  | ||||
| 	return tr | ||||
| } | ||||
|  | ||||
| const defaultEndpoint = "http://localhost:2379" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user