Prevent TLS/SSL Birthday attacks on 64-bit block ciphers (SWEET32)
Solution 1:
The cipher suites can be set via cipher-suites parameter:
$ etcd \
--cipher-suites TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
According to here those cipher suites should be secure.
Edit :
For fixing this in running etcd
in Kubernetes on Ubuntu-18.04 LTE.
edit : /etc/etcd.env
add this line :
ETCD_CIPHER_SUITES=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384