Commit 2976e892 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #26562 from victorgp/master

Automatic merge from submit-queue Minor typo in comment, SSLv3 instead of SSLv4 Minor fix in a comment from this PR https://github.com/kubernetes/kubernetes/pull/26169
parents 6277eea5 7cebb559
......@@ -63,7 +63,7 @@ func TLSConfigFor(c *Config) (*tls.Config, error) {
}
tlsConfig := &tls.Config{
// Can't use SSLv4 because of POODLE and BEAST
// Can't use SSLv3 because of POODLE and BEAST
// Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher
// Can't use TLSv1.1 because of RC4 cipher usage
MinVersion: tls.VersionTLS12,
......
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