Kubernetes: modify a secret using the kubectl?
How can I modify the values in a Kubernetes secret using the kubectl ? I created the secret with kubernetes create secret generic , but there does not seem to be a way to modify a secret. For example, to add a new secret-value to it, or to change a secret-value in it. I assume i can go 'low-level', and write the yaml-file and do a kubectl edit but I hope there is a simpler way. (I'm using kubernetes 1.2.x ) The most direct (and interactive) way should be to execute kubectl edit secret <my secret> . Run kubectl get secrets if you'd like to see the list of secrets managed by Kubernetes. As I