Encryption at rest
Kubernetes has the concept of secrets for managing sensitive information needed by a cluster, such as usernames and passwords, encryption keys, etc. Secrets can be managed independently of the pod(s) which need them and can be made available to the pods that require them as needed.
By default, the secret data is base64-encoded in etcd. Kubernetes does support encryption at rest for the data in etcd, but the key for that encryption is stored in plaintext in the config file on the control plane nodes. To protect this key at rest, Charmed Kubernetes can use HashiCorp’s Vault and VaultLocker to securely generate, share, and configure the encryption key used by Kubernetes.
Using Encryption-at-Rest with Charmed Kubernetes
To enable encryption-at-rest for Charmed Kubernetes, simply deploy the Vault charm (as
well as a database backend for it), and relate it to kubernetes-control-plane
via
the vault-kv
relation endpoint.
The following overlay file (download) alters Charmed Kubernetes to use Vault for encrypted data:
Save this to a file named vault-storage-overlay.yaml
and deploy with:
Once the deployment settles, you will notice that several applications are in a
blocked
state in Juju, with Vault indicating that it needs to be initialised
and unsealed. To unseal Vault, you can read the
vault charm documentation for in-depth instructions (you may also need to expose Vault), or you can use
the Vault client already on the deployed unit with the following steps:
Once the deployment settles, Charmed Kubernetes will automatically enable encryption for the secrets data stored in etcd.
Known Issues
This does not work on LXD at this time, due to security limitations preventing charms from acquiring and managing the block devices and file systems needed to implement this. In the future, support for KMS, or encryption-as-a-service, will remove this restriction. In the meantime, LXD deployments can make use of encryption at the level of the LXD storage pool, or even full-disk-encryption on the host machine.
See the guide to contributing or discuss these docs in our public Mattermost channel.