Commit f1c323c2 authored by Brad Davidson's avatar Brad Davidson Committed by Brad Davidson

Skip setting up client tls when etcd server does not have tls enabled

parent 90ce62ce
...@@ -608,18 +608,20 @@ func getClientConfig(ctx context.Context, runtime *config.ControlRuntime, endpoi ...@@ -608,18 +608,20 @@ func getClientConfig(ctx context.Context, runtime *config.ControlRuntime, endpoi
if len(endpoints) == 0 { if len(endpoints) == 0 {
endpoints = getEndpoints(runtime) endpoints = getEndpoints(runtime)
} }
tlsConfig, err := toTLSConfig(runtime)
if err != nil { config := &etcd.Config{
return nil, err
}
return &etcd.Config{
Endpoints: endpoints, Endpoints: endpoints,
TLS: tlsConfig,
Context: ctx, Context: ctx,
DialTimeout: defaultDialTimeout, DialTimeout: defaultDialTimeout,
DialKeepAliveTime: defaultKeepAliveTime, DialKeepAliveTime: defaultKeepAliveTime,
DialKeepAliveTimeout: defaultKeepAliveTimeout, DialKeepAliveTimeout: defaultKeepAliveTimeout,
}, nil }
var err error
if strings.HasPrefix(endpoints[0], "https://") {
config.TLS, err = toTLSConfig(runtime)
}
return config, err
} }
// getEndpoints returns the endpoints from the runtime config if set, otherwise the default endpoint. // getEndpoints returns the endpoints from the runtime config if set, otherwise the default endpoint.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment