This page shows how to configure a Key Management Service (KMS) provider and plugin to enable secret data encryption. In Kubernetes 1.33 there are two versions of KMS at-rest encryption. You should use KMS v2 if feasible because KMS v1 is deprecated (since Kubernetes v1.28) and disabled by default (since Kubernetes v1.29). KMS v2 offers significantly better performance characteristics than KMS v1.
You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:
The version of Kubernetes that you need depends on which KMS API version you have selected. Kubernetes recommends using KMS v2.
To check the version, enter kubectl version
.
Kubernetes v1.28 [deprecated]
Kubernetes version 1.10.0 or later is required
For version 1.29 and later, the v1 implementation of KMS is disabled by default. To enable the feature, set --feature-gates=KMSv1=true
to configure a KMS v1 provider.
Your cluster must use etcd v3 or later
Kubernetes v1.29 [stable]
The KMS encryption provider uses an envelope encryption scheme to encrypt data in etcd. The data is encrypted using a data encryption key (DEK). The DEKs are encrypted with a key encryption key (KEK) that is stored and managed in a remote KMS.
If you use the (deprecated) v1 implementation of KMS, a new DEK is generated for each encryption.
With KMS v2, a new DEK is generated per encryption: the API server uses a key derivation function to generate single use data encryption keys from a secret seed combined with some random data. The seed is rotated whenever the KEK is rotated (see the Understanding key_id and Key Rotation section below for more details).
The KMS provider uses gRPC to communicate with a specific KMS plugin over a UNIX domain socket. The KMS plugin, which is implemented as a gRPC server and deployed on the same host(s) as the Kubernetes control plane, is responsible for all communication with the remote KMS.
To configure a KMS provider on the API server, include a provider of type kms
in the providers
array in the encryption configuration file and set the following properties:
apiVersion
: API Version for KMS provider. Leave this value empty or set it to v1
.name
: Display name of the KMS plugin. Cannot be changed once set.endpoint
: Listen address of the gRPC server (KMS plugin). The endpoint is a UNIX domain socket.cachesize
: Number of data encryption keys (DEKs) to be cached in the clear. When cached, DEKs can be used without another call to the KMS; whereas DEKs that are not cached require a call to the KMS to unwrap.timeout
: How long should kube-apiserver
wait for kms-plugin to respond before returning an error (default is 3 seconds).apiVersion
: API Version for KMS provider. Set this to v2
.name
: Display name of the KMS plugin. Cannot be changed once set.endpoint
: Listen address of the gRPC server (KMS plugin). The endpoint is a UNIX domain socket.timeout
: How long should kube-apiserver
wait for kms-plugin to respond before returning an error (default is 3 seconds).KMS v2 does not support the cachesize
property. All data encryption keys (DEKs) will be cached in the clear once the server has unwrapped them via a call to the KMS. Once cached, DEKs can be used to perform decryption indefinitely without making a call to the KMS.
See Understanding the encryption at rest configuration.
To implement a KMS plugin, you can develop a new plugin gRPC server or enable a KMS plugin already provided by your cloud provider. You then integrate the plugin with the remote KMS and deploy it on the Kubernetes control plane.
Refer to your cloud provider for instructions on enabling the cloud provider-specific KMS plugin.
You can develop a KMS plugin gRPC server using a stub file available for Go. For other languages, you use a proto file to create a stub file that you can use to develop the gRPC server code.
Using Go: Use the functions and data structures in the stub file: api.pb.go to develop the gRPC server code
Using languages other than Go: Use the protoc compiler with the proto file: api.proto to generate a stub file for the specific language
Using Go: A high level library is provided to make the process easier. Low level implementations can use the functions and data structures in the stub file: api.pb.go to develop the gRPC server code
Using languages other than Go: Use the protoc compiler with the proto file: api.proto to generate a stub file for the specific language
Then use the functions and data structures in the stub file to develop the server code.
kms plugin version: v1beta1
In response to procedure call Version, a compatible KMS plugin should return v1beta1
as VersionResponse.version
.
message version: v1beta1
All messages from KMS provider have the version field set to v1beta1
.
protocol: UNIX domain socket (unix
)
The plugin is implemented as a gRPC server that listens at UNIX domain socket. The plugin deployment should create a file on the file system to run the gRPC unix domain socket connection. The API server (gRPC client) is configured with the KMS provider (gRPC server) unix domain socket endpoint in order to communicate with it. An abstract Linux socket may be used by starting the endpoint with /@
, i.e. unix:///@foo
. Care must be taken when using this type of socket as they do not have concept of ACL (unlike traditional file based sockets). However, they are subject to Linux networking namespace, so will only be accessible to containers within the same pod unless host networking is used.
KMS plugin version: v2
In response to the Status
remote procedure call, a compatible KMS plugin should return its KMS compatibility version as StatusResponse.version
. That status response should also include "ok" as StatusResponse.healthz
and a key_id
(remote KMS KEK ID) as StatusResponse.key_id
. The Kubernetes project recommends you make your plugin compatible with the stable v2
KMS API. Kubernetes 1.33 also supports the v2beta1
API for KMS; future Kubernetes releases are likely to continue supporting that beta version.
The API server polls the Status
procedure call approximately every minute when everything is healthy, and every 10 seconds when the plugin is not healthy. Plugins must take care to optimize this call as it will be under constant load.
Encryption
The EncryptRequest
procedure call provides the plaintext and a UID for logging purposes. The response must include the ciphertext, the key_id
for the KEK used, and, optionally, any metadata that the KMS plugin needs to aid in future DecryptRequest
calls (via the annotations
field). The plugin must guarantee that any distinct plaintext results in a distinct response (ciphertext, key_id, annotations)
.
If the plugin returns a non-empty annotations
map, all map keys must be fully qualified domain names such as example.com
. An example use case of annotation
is {"kms.example.io/remote-kms-auditid":"<audit ID used by the remote KMS>"}
The API server does not perform the EncryptRequest
procedure call at a high rate. Plugin implementations should still aim to keep each request's latency at under 100 milliseconds.
Decryption
The DecryptRequest
procedure call provides the (ciphertext, key_id, annotations)
from EncryptRequest
and a UID for logging purposes. As expected, it is the inverse of the EncryptRequest
call. Plugins must verify that the key_id
is one that they understand - they must not attempt to decrypt data unless they are sure that it was encrypted by them at an earlier time.
The API server may perform thousands of DecryptRequest
procedure calls on startup to fill its watch cache. Thus plugin implementations must perform these calls as quickly as possible, and should aim to keep each request's latency at under 10 milliseconds.
Understanding key_id
and Key Rotation
The key_id
is the public, non-secret name of the remote KMS KEK that is currently in use. It may be logged during regular operation of the API server, and thus must not contain any private data. Plugin implementations are encouraged to use a hash to avoid leaking any data. The KMS v2 metrics take care to hash this value before exposing it via the /metrics
endpoint.
The API server considers the key_id
returned from the Status
procedure call to be authoritative. Thus, a change to this value signals to the API server that the remote KEK has changed, and data encrypted with the old KEK should be marked stale when a no-op write is performed (as described below). If an EncryptRequest
procedure call returns a key_id
that is different from Status
, the response is thrown away and the plugin is considered unhealthy. Thus implementations must guarantee that the key_id
returned from Status
will be the same as the one returned by EncryptRequest
. Furthermore, plugins must ensure that the key_id
is stable and does not flip-flop between values (i.e. during a remote KEK rotation).
Plugins must not re-use key_id
s, even in situations where a previously used remote KEK has been reinstated. For example, if a plugin was using key_id=A
, switched to key_id=B
, and then went back to key_id=A
- instead of reporting key_id=A
the plugin should report some derivative value such as key_id=A_001
or use a new value such as key_id=C
.
Since the API server polls Status
about every minute, key_id
rotation is not immediate. Furthermore, the API server will coast on the last valid state for about three minutes. Thus if a user wants to take a passive approach to storage migration (i.e. by waiting), they must schedule a migration to occur at 3 + N + M
minutes after the remote KEK has been rotated (N
is how long it takes the plugin to observe the key_id
change and M
is the desired buffer to allow config changes to be processed - a minimum M
of five minutes is recommend). Note that no API server restart is required to perform KEK rotation.
protocol: UNIX domain socket (unix
)
The plugin is implemented as a gRPC server that listens at UNIX domain socket. The plugin deployment should create a file on the file system to run the gRPC unix domain socket connection. The API server (gRPC client) is configured with the KMS provider (gRPC server) unix domain socket endpoint in order to communicate with it. An abstract Linux socket may be used by starting the endpoint with /@
, i.e. unix:///@foo
. Care must be taken when using this type of socket as they do not have concept of ACL (unlike traditional file based sockets). However, they are subject to Linux networking namespace, so will only be accessible to containers within the same pod unless host networking is used.
The KMS plugin can communicate with the remote KMS using any protocol supported by the KMS. All configuration data, including authentication credentials the KMS plugin uses to communicate with the remote KMS, are stored and managed by the KMS plugin independently. The KMS plugin can encode the ciphertext with additional metadata that may be required before sending it to the KMS for decryption (KMS v2 makes this process easier by providing a dedicated annotations
field).
Ensure that the KMS plugin runs on the same host(s) as the Kubernetes API server(s).
To encrypt the data:
Create a new EncryptionConfiguration
file using the appropriate properties for the kms
provider to encrypt resources like Secrets and ConfigMaps. If you want to encrypt an extension API that is defined in a CustomResourceDefinition, your cluster must be running Kubernetes v1.26 or newer.
Set the --encryption-provider-config
flag on the kube-apiserver to point to the location of the configuration file.
--encryption-provider-config-automatic-reload
boolean argument determines if the file set by --encryption-provider-config
should be automatically reloaded if the disk contents change.
Restart your API server.
apiVersion:apiserver.config.k8s.io/v1kind:EncryptionConfigurationresources:- resources:- secrets- configmaps- pandas.awesome.bears.exampleproviders:- kms:name:myKmsPluginFooendpoint:unix:///tmp/socketfile-foo.sockcachesize:100timeout:3s- kms:name:myKmsPluginBarendpoint:unix:///tmp/socketfile-bar.sockcachesize:100timeout:3s
apiVersion:apiserver.config.k8s.io/v1kind:EncryptionConfigurationresources:- resources:- secrets- configmaps- pandas.awesome.bears.exampleproviders:- kms:apiVersion:v2name:myKmsPluginFooendpoint:unix:///tmp/socketfile-foo.socktimeout:3s- kms:apiVersion:v2name:myKmsPluginBarendpoint:unix:///tmp/socketfile-bar.socktimeout:3s
Setting --encryption-provider-config-automatic-reload
to true
collapses all health checks to a single health check endpoint. Individual health checks are only available when KMS v1 providers are in use and the encryption config is not auto-reloaded.
The following table summarizes the health check endpoints for each KMS version:
KMS configurations | Without Automatic Reload | With Automatic Reload |
---|---|---|
KMS v1 only | Individual Healthchecks | Single Healthcheck |
KMS v2 only | Single Healthcheck | Single Healthcheck |
Both KMS v1 and v2 | Individual Healthchecks | Single Healthcheck |
No KMS | None | Single Healthcheck |
Single Healthcheck
means that the only health check endpoint is /healthz/kms-providers
.
Individual Healthchecks
means that each KMS plugin has an associated health check endpoint based on its location in the encryption config: /healthz/kms-provider-0
, /healthz/kms-provider-1
etc.
These healthcheck endpoint paths are hard coded and generated/controlled by the server. The indices for individual healthchecks corresponds to the order in which the KMS encryption config is processed.
Until the steps defined in Ensuring all secrets are encrypted are performed, the providers
list should end with the identity: {}
provider to allow unencrypted data to be read. Once all resources are encrypted, the identity
provider should be removed to prevent the API server from honoring unencrypted data.
For details about the EncryptionConfiguration
format, please check the API server encryption API reference.
When encryption at rest is correctly configured, resources are encrypted on write. After restarting your kube-apiserver
, any newly created or updated Secret or other resource types configured in EncryptionConfiguration
should be encrypted when stored. To verify, you can use the etcdctl
command line program to retrieve the contents of your secret data.
Create a new secret called secret1
in the default
namespace:
kubectl create secret generic secret1 -n default --from-literal=mykey=mydata
Using the etcdctl
command line, read that secret out of etcd:
ETCDCTL_API=3 etcdctl get /kubernetes.io/secrets/default/secret1 [...] | hexdump -C
where [...]
contains the additional arguments for connecting to the etcd server.
Verify the stored secret is prefixed with k8s:enc:kms:v1:
for KMS v1 or prefixed with k8s:enc:kms:v2:
for KMS v2, which indicates that the kms
provider has encrypted the resulting data.
Verify that the secret is correctly decrypted when retrieved via the API:
kubectl describe secret secret1 -n default
The Secret should contain mykey: mydata
When encryption at rest is correctly configured, resources are encrypted on write. Thus we can perform an in-place no-op update to ensure that data is encrypted.
The following command reads all secrets and then updates them to apply server side encryption. If an error occurs due to a conflicting write, retry the command. For larger clusters, you may wish to subdivide the secrets by namespace or script an update.
kubectl get secrets --all-namespaces -o json | kubectl replace -f -
To switch from a local encryption provider to the kms
provider and re-encrypt all of the secrets:
Add the kms
provider as the first entry in the configuration file as shown in the following example.
apiVersion:apiserver.config.k8s.io/v1kind:EncryptionConfigurationresources:- resources:- secretsproviders:- kms:apiVersion:v2name :myKmsPluginendpoint:unix:///tmp/socketfile.sock- aescbc:keys:- name:key1secret:<BASE 64 ENCODED SECRET>
Restart all kube-apiserver
processes.
Run the following command to force all secrets to be re-encrypted using the kms
provider.
kubectl get secrets --all-namespaces -o json | kubectl replace -f -
If you no longer want to use encryption for data persisted in the Kubernetes API, read decrypt data that are already stored at rest.