You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// tlsExtraArgs holds the final set of extraArgs that should be set in the etcd for a default configuration.
26
+
// See inject.go for the reasoning behind these values.
27
+
vartlsExtraArgs=map[string]interface{}{
28
+
"auto-tls": "false",
29
+
"peer-auto-tls": "false",
30
+
"cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", //nolint:lll // Long list of ciphers ok in test.
0 commit comments