Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Populating Docker containers with sensitive information using kubernetes

I have a pod that runs containers which require access to sensitive information like API keys and DB passwords. Right now, these sensitive values are embedded in the controller definitions like so:

env:
- name: DB_PASSWORD
  value: password

which are then available inside the Docker container as the $DB_PASSWORD environment variable. All fairly easy.

But reading their documentation on Secrets, they explicitly say that putting sensitive configuration values into your definition breaches best practice and is potentially a security issue. The only other strategy I can think of is the following:

  • create an OpenPGP key per user community or namespace
  • use crypt to set the configuration value into etcd (which is encrypted using the private key)
  • create a kubernetes secret containing the private key, like so
  • associate that secret with the container (meaning that the private key will be accessible as a volume mount), like so
  • when the container is launched, it will access the file inside the volume mount for the private key, and use it to decrypt the conf values returned from etcd
  • this can then be incorporated into confd, which populates local files according to a template definition (such as Apache or WordPress config files)

This seems fairly complicated, but more secure and flexible, since the values will no longer be static and stored in plaintext.

So my question, and I know it's not an entirely objective one, is whether this is completely necessary or not? Only admins will be able to view and execute the RC definitions in the first place; so if somebody's breached the kubernetes master, you have other problems to worry about. The only benefit I see is that there's no danger of secrets being committed to the filesystem in plaintext...

Are there any other ways to populate Docker containers with secret information in a secure way?

like image 998
hohner Avatar asked Aug 26 '15 15:08

hohner


People also ask

How do I encrypt a Docker container?

Now it's time to encrypt our Docker image. To do this by using the ctr-enc images encrypt command. This will encrypt the existing image to a new tag.

How do you store secrets in Kubernetes?

When you create a Secret with kubectl create -f secret. yaml , Kubernetes stores it in etcd. The Secrets are stored in clear in etcd unless you define an encryption provider. When you define the provider, before the Secret is stored in etcd and after the values are submitted to the API, the Secrets are encrypted.

How do I bypass a password in Dockerfile?

Simply use the --build-arg flag. So you can avoid to keep explicit password (or other sensible information) on the Dockerfile and pass them on the fly.


Video Answer


2 Answers

Unless you have many megabytes of config, this system sounds unnecessarily complex. The intended usage is for you to just put each config into a secret, and the pods needing the config can mount that secret as a volume.

You can then use any of a variety of mechanisms to pass that config to your task, e.g. if it's environment variables source secret/config.sh; ./mybinary is a simple way.

I don't think you gain any extra security by storing a private key as a secret.

like image 94
lavalamp Avatar answered Sep 28 '22 08:09

lavalamp


I would personally resolve to user a remote keymanager that your software could access across the net over a HTTPS connection. For example Keywhiz or Vault would probably fit the bill.

I would host the keymanager on a separate isolated subnet, and configure firewall to only allow access to ip addresses which I expected to need the keys. Both KeyWhiz and Vault comes with an ACL mechanism, so you may not have to do anything with firewalls at all, but it does not hurt to consider it -- however the key here is to host the keymanager on a separate network, and possible even a separate hosting provider.

You local configuration file in the container would contain just the URL of the key service, and possible a credentials to retrieve the key from the keymanager -- the credentials would be useless to an attacker if he didn't match the ACL/IP addresses.

like image 43
Soren Avatar answered Sep 28 '22 08:09

Soren