DEV Community

Discussion on: Tutorial: How to use Kubernetes Secrets for storing sensitive config data

Collapse
 
just_insane profile image
Justin Gauthier

This is great and all, but unless you specifically setup etcd to encrypt it’s data, the information you store in β€œsecrets” is still plaintext, making it not very secure.

Collapse
 
downey profile image
Tim Downey

+1

One of the many gotchas of trying to manage your own Kubernetes cluster. πŸ˜”

kubernetes.io/docs/tasks/administe...

Collapse
 
abhirockzz profile image
Abhishek Gupta

Agreed Justin. Encryption at rest is key. Thanks for pointing this out!

Collapse
 
dploeger profile image
Dennis Ploeger

I wanted to add that as well. The Kubernetes-Team didn't choose "Secret" as a term very wisely.

@Abishek, perhaps you could add this to a paragraph of your posts, because I had many people thinking of secrets as a secure storage.