Skip to main content

What are some methods that can be used to leverage secrets in a pod?

You mount them as a data volume or expose them as environment variables in a pod.


  • Secrets as namespaced objects.
  • Secret data stored in tmpfs in nodes.
  • API server stores secrets as plain text in etcd.
  • Or asĀ @Chris.Childerhose said secrets data in environment variables

Comment