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
This commit is contained in:
k8s-merge-robot 2016-06-01 03:13:23 -07:00
commit 2976e892a4

View File

@ -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,