Mutual TLS
This policy enables automatic encrypted mTLS traffic for all the services in a Mesh, as well as assigning an identity to every data plane proxy. Kuma supports different types of CA backends as well as automatic certificate rotation.
Kuma ships with the following CA (Certificate Authority) supported backends:
- builtin: it automatically auto-generates a CA root certificate and key, that are also being automatically stored as a Secret.
- provided: the CA root certificate and key are being provided by the user in the form of a Secret.
Once a CA backend has been specified, Kuma will then automatically generate a certificate for every data plane proxy in the Mesh. The certificates that Kuma generates are SPIFFE compatible and are used for AuthN/Z use-cases in order to identify every workload in our system.
The certificates that Kuma generates have a SAN set to spiffe://<mesh name>/<service name>. When Kuma enforces policies that require an identity like TrafficPermission it will extract the SAN from the client certificate and use it to match the service identity.
Remember that by default mTLS is not enabled and needs to be explicitly enabled as described below. Also remember that by default when mTLS is enabled all traffic is denied unless a TrafficPermission policy is being configured to explicitly allow traffic across proxies.
Always make sure that a TrafficPermission resource is present before enabling mTLS in a Mesh in order to avoid unexpected traffic interruptions caused by a lack of authorization between proxies.
To enable mTLS we need to configure the mtls property in a Mesh resource. We can have as many backends as we want, but only one at a time can be enabled via the enabledBackend property.
If enabledBackend is missing or empty, then mTLS will be disabled for the entire Mesh.
Usage of “builtin” CA
This is the fastest and simplest way to enable mTLS in Kuma.
With a builtin CA backend type, Kuma will dynamically generate its own CA root certificate and key that it uses to automatically provision (and rotate) certificates for every replica of every service.
We can specify more than one builtin backend with different names, and each one of them will be automatically provisioned with a unique pair of certificate + key (they are not shared).
To enable a builtin mTLS for the entire Mesh we can apply the following configuration:
apiVersion: kuma.io/v1alpha1kind: Meshmetadata:name: defaultspec:mtls:enabledBackend: ca-1backends:- name: ca-1type: builtindpCert:rotation:expiration: 1dconf:caCert:RSAbits: 2048expiration: 10y
We will apply the configuration with kubectl apply -f [..].
type: Meshname: defaultmtls:enabledBackend: ca-1backends:- name: ca-1type: builtindpCert:rotation:expiration: 1dconf:caCert:RSAbits: 2048expiration: 10y
We will apply the configuration with kumactl apply -f [..] or via the HTTP API.
A few considerations:
- The
dpCertconfiguration determines how often Kuma should automatically rotate the certificates assigned to every data plane proxy. - The
caCertconfiguration determines a few properties that Kuma will use when auto-generating the CA root certificate.
Storage of Secrets
When using a builtin backend Kuma automatically generates a root CA certificate and key that are being stored as a Kuma Secret resource with the following name:
{mesh name}.ca-builtin-cert-{backend name}for the certificate{mesh name}.ca-builtin-key-{backend name}for the key
On Kubernetes, Kuma secrets are being stored in the kuma-system namespace, while on Universal they are being stored in the underlying backend configured in kuma-cp.
We can retrieve the secrets via kumactl on both Universal and Kubernetes, or via kubectl on Kubernetes only:
The following command can be executed on any Kuma backend:
kumactl get secrets [-m MESH]# MESH NAME AGE# default default.ca-builtin-cert-ca-1 1m# default default.ca-builtin-key-ca-1 1m
The following command can be executed only on Kubernetes:
kubectl get secrets \-n kuma-system \--field-selector='type=system.kuma.io/secret'# NAME TYPE DATA AGE# default.ca-builtin-cert-ca-1 system.kuma.io/secret 1 1m# default.ca-builtin-key-ca-1 system.kuma.io/secret 1 1m
Usage of “provided” CA
If you choose to provide your own CA root certificate and key, you can use the provided backend. With this option, you must also manage the certificate lifecycle yourself.
Unlike the builtin backend, with provided you first upload the certificate and key as Secret resources, and then reference the Secrets in the mTLS configuration.
Kuma then provisions data plane proxy certificates for every replica of every service from the CA root certificate and key.
Sample configuration:
apiVersion: kuma.io/v1alpha1kind: Meshmetadata:name: defaultspec:mtls:enabledBackend: ca-1backends:- name: ca-1type: provideddpCert:rotation:expiration: 1dconf:cert:secret: name-of-secretkey:secret: name-of-secret
We will apply the configuration with kubectl apply -f [..].
type: Meshname: defaultmtls:enabledBackend: ca-1backends:- name: ca-1type: provideddpCert:rotation:expiration: 1dconf:cert:secret: name-of-secretkey:secret: name-of-secret
We will apply the configuration with kumactl apply -f [..] or via the HTTP API.
A few considerations:
- The
dpCertconfiguration determines how often Kuma should automatically rotate the certificates assigned to every data plane proxy. - The Secrets must exist before referencing them in a
providedbackend.
Intermediate CA
You can also work with an Intermediate CA with a provided backend. Generate the certificate and place it first in certificate file, before the certificate from the root CA. The certificate from the root CA should start on a new line. Then create the secret to specify in the cert section of the config. The secret for the key should contain only the private key of the certificate from the intermediate CA.
You can chain certificates from multiple intermediate CAs the same way. Place the certificate from the closest CA at the top of the cert file, followed by certificates in order up the certificate chain, then generate the secret to hold the contents of the file.
Sample certificate file for a single intermediate CA:
-----BEGIN CERTIFICATE-----MIIDdjCCAl6gAwIBAgICEAEwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCR0IxEDAOBgNVBAgMB0VuZ2xhbmQxEjAQBgNVBAoMCUFsaWNlIEx0ZDEPMA0GA1UEAwwGS3VtYUNBMB4XDTIxMDUxMjEzMzU1MVoXDTMxMDUxMDEzMzU1MVowUDELMAkGA1UEBhMCR0IxEDAOBgNVBAgMB0VuZ2xhbmQxEjAQBgNVBAoMCUFsaWNlIEx0ZDEbMBkGA1UEAwwSS3VtYUludGVybWVkaWF0ZUNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1VzY9vOr8+SINzqA8Rwk4bpeex32Zn9BGAUTweRgomQC7Yfzrm6/Vk74/T/46n3FydpdEZTdoFKCF8EsA0eqAEfWi6tu7D41GOUFUYpdRJBJEq+HE17QN8SFMquy8NhCtK8th8ytSu2ThvCOq1MHT5WjtQUmRGSJMlcfWA5TsCIK0Sb3cSf3jadjEqcmcvJN6Xa0Y0VivcPg5eB+We7BNnp4ogqmZw0veoPjc14HVZpqxrra9YezDRai6rnHqDjnkMMhe9MmSkCKD9Ldwduq0ZfuOQFIBOaX+4MKUyDN4tTMCcRRl/NlA4JgrNNWCFfUQV0VmQ0Tc8+cn/+gokHAZwIDAQABo2YwZDAdBgNVHQ4EFgQUGNjzTe727HX4AqZDMn1L9XzkTaYwHwYDVR0jBBgwFoAUSu2E4Ue5aPzdWQCCNp36Pf3iYbcwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggEBACuOczJlf4wcT9rfAIrZHuI5aCzYTKOxJllhN5e/eEhMYpsox6Zb4CZXS3wdJ3fVugddLWDzIAjrNE1DrOpugUPurNIpHsT6u+SHFXkRsXyHFfMA+CZJ0tOYEtP1r3BnqsY/nh0GJqHJxaJolEaqFaKgKTQPTinOxTKFxsHa1OHlsvkdxvotd2BQhPQYWes3LMPxtGhS5kwKaXaB3gzTnzjGvgGNeJ+l0AiWqXkivixpox3/6mMa90mwssl4sRQQLR1kLFU4hwghNm52Pk7o7HSTEXsnB+ZhHB9skpetY6R4uKWh8xapXmj4PDrAA5OKZzSO7Yhdt0vXPOIrjShMxvA=-----END CERTIFICATE----------BEGIN CERTIFICATE-----MIIDbjCCAlagAwIBAgIJALDMMa9rXKLPMA0GCSqGSIb3DQEBCwUAMEQxCzAJBgNVBAYTAkdCMRAwDgYDVQQIDAdFbmdsYW5kMRIwEAYDVQQKDAlBbGljZSBMdGQxDzANBgNVBAMMBkt1bWFDQTAeFw0yMTA1MTIxMzE2MjFaFw00MTA1MDcxMzE2MjFaMEQxCzAJBgNVBAYTAkdCMRAwDgYDVQQIDAdFbmdsYW5kMRIwEAYDVQQKDAlBbGljZSBMdGQxDzANBgNVBAMMBkt1bWFDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANCJqVJjYOWFUZcdhrfBxgoCZNE+LFq9sieP2yRGrYzJsCdwphH6L7GsWds8VjlobfIP4nA23TJiMWlsx126r7pSRbVEq8/JoNa0vMspEmtjHZhSweIXWXX7o8V+FRKbCW5NyqGiHF0ScE4VpNc3uWCA2zcaU80G9SAKI83cUjnp2JzLPMqppQ+pj6HsG+8322FPA2L11fsCAqdCW+gwJWpKzlfBPyeNTUOMpcP8n+Yjcah4tqcCY2PZ7nH7cZN1vHGhT5/Pn3VRaNHUq4y1Zn/wJnjlOcD4DbVFXYpYIlPx+yAs56FXd3a7Imfg56HzOLOZcDY/+Sxy7J2Pq8cipTcCAwEAAaNjMGEwHQYDVR0OBBYEFErthOFHuWj83VkAgjad+j394mG3MB8GA1UdIwQYMBaAFErthOFHuWj83VkAgjad+j394mG3MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4IBAQCBqj9F+OJZXifyUGq9bAiybpP9RYnKd0JCiByvO/S95v6Bz9RnwrvgN75mzpPdOM51MYKyBLFKJpvrmyQ+njcsVMnv//MH7cHE8h6WkwP9IggNg0K21J1zkS8ApfTw7buUemZn6NFqHgysAUnWq8WM8YxfEErubbTCm6wslTLzLdblBGLjh7qOzDGh8n0eBjqWgCYjbEsB4tDxjfSjLjSyldvnIMTyWrA8a/1iCNDXj0wMtHoBji307dsI5drpVokELweu6SS7M4ODE8/Ci3QLS/mmx++9s2kCCqq49dyA2/ZabLb2nBF96wo/RDp93kIzfNvzMkC3VRwESV+SUG0x-----END CERTIFICATE-----
CA requirements
When using an arbitrary certificate and key for a provided backend, we must make sure that we comply with the following requirements:
- It MUST have basic constraint
CAset totrue(see X509-SVID: 4.1. Basic Constraints) - It MUST have key usage extension
keyCertSignset (see X509-SVID: 4.3. Key Usage) - It MUST NOT have key usage extension ‘keyAgreement’ set (see X509-SVID: Appendix A. X.509 Field Reference)
- It SHOULD NOT set key usage extension ‘digitalSignature’ and ‘keyEncipherment’ to be SPIFFE compliant (see X509-SVID: Appendix A. X.509 Field Reference)
Do not use the following example in production, instead generate valid and compliant certificates. This example is intended for usage in a development environment.
Below we can find an example to generate a sample CA certificate + key:
The following command will generate a CA root certificate and key that can be uploaded to Kuma as a Secret and then used in a provided mTLS backend:
SAMPLE_CA_CONFIG="[req]distinguished_name=dn[ dn ][ ext ]basicConstraints=CA:TRUE,pathlen:0keyUsage=keyCertSign"openssl req -config <(echo "$SAMPLE_CA_CONFIG") -new -newkey rsa:2048 -nodes \-subj "/CN=Hello" -x509 -extensions ext -keyout key.pem -out crt.pem
The command will generate a certificate at crt.pem and the key at key.pem. We can generate the Kuma Secret resources by following the Secret reference.
Development Mode
In development mode we may want to provide the cert and key properties of the provided backend without necessarily having to create a Secret resource, but by using either a file or an inline value.
Using the file and inline modes in production presents a security risk since it makes the values of our CA root certificate and key more easily accessible from a malicious actor. We highly recommend using file and inline only in development mode.
Kuma offers an alternative way to specify the CA root certificate and key:
Please note the file and inline properties that are being used instead of secret:
apiVersion: kuma.io/v1alpha1kind: Meshmetadata:name: defaultspec:mtls:enabledBackend: ca-1backends:- name: ca-1type: providedconfig:cert:inline: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURHekNDQWdPZ0F3S... # cert in Base64key:file: /opt/cert.key
Please note the file and inline properties that are being used instead of secret:
type: Meshname: defaultmtls:enabledBackend: ca-1backends:- name: ca-1type: providedconfig:cert:inline: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURHekNDQWdPZ0F3S... # cert in Base64key:file: /opt/cert.key
Permissive mTLS
In version 1.4.1 and later, Kuma provides PERMISSIVE mTLS mode to let you migrate existing workloads with zero downtime.
Permissive mTLS mode encrypts outbound connections the same way as strict mTLS mode, but inbound connections on the server-side accept both TLS and plaintext. This lets you migrate servers to an mTLS mesh before their clients. It also supports the case where the client and server already implement TLS.
PERMISSIVE mode is not secure. It’s intended as a temporary utility. Make sure to set to STRICT mode after migration is complete.
apiVersion: kuma.io/v1alpha1kind: Meshmetadata:name: defaultspec:mtls:enabledBackend: ca-1backends:- name: ca-1type: builtinmode: PERMISSIVE # supported values: STRICT, PERMISSIVE
type: Meshname: defaultmtls:enabledBackend: ca-1backends:- name: ca-1type: builtinmode: PERMISSIVE # supported values: STRICT, PERMISSIVE
Certificate Rotation
Once a CA backend has been configured, Kuma will utilize the CA root certificate and key to automatically provision a certificate for every data plane proxy that it connects to kuma-cp.
Unlike the CA certificate, the data plane proxy certificates are not permanently stored anywhere but they only reside in memory. These certificates are designed to be short-lived and rotated often by Kuma.
By default, the expiration time of a data plane proxy certificate is 30 days. Kuma rotates these certificates automatically after 4/5 of the certificate validity time (ie: for the default 30 days expiration, that would be every 24 days).
You can update the duration of the data plane proxy certificates by updating the dpCert property on every available mTLS backend.
You can inspect the certificate rotation statistics by executing the following command (supported on both Kubernetes and Universal):
We can use the Kuma CLI:
kumactl inspect dataplanes# MESH NAME TAGS STATUS LAST CONNECTED AGO LAST UPDATED AGO TOTAL UPDATES TOTAL ERRORS CERT REGENERATED AGO CERT EXPIRATION CERT REGENERATIONS# default web-01 service=web Online 5s 3s 4 0 3s 2020-05-11 16:01:34 2
Please note the CERT REGENERATED AGO, CERT EXPIRATION, CERT REGENERATIONS columns.
We can use the Kuma HTTP API by retrieving the Dataplane Insight resource and inspecting the dataplaneInsight object.
...dataplaneInsight": {..."mTLS": {"certificateExpirationTime": "2020-05-14T20:15:23Z","lastCertificateRegeneration": "2020-05-13T20:15:23.994549539Z","certificateRegenerations": 1}}...
A new data plane proxy certificate is automatically generated when:
- A data plane proxy is restarted.
- The control plane is restarted.
- The data plane proxy connects to a new control plane.
