New to KubeDB? Please start here.
Elasticsearch TLS/SSL Encryption
Prerequisite : To configure TLS/SSL in Elasticsearch, KubeDB uses cert-manager to issue certificates. So first you have to make sure that the cluster has cert-manager installed. To install cert-manager in your cluster following steps here.
To issue a certificate, the following crds of cert-manager are used:
Issuer/ClusterIssuer: Issuers, and ClusterIssuers represent certificate authorities (CAs) that are able to generate signed certificates by honoring certificate signing requests. All cert-manager certificates require a referenced issuer that is in a ready condition to attempt to honor the request. You can learn more details here.Certificate:cert-managerhas the concept of Certificates that define a desired x509 certificate which will be renewed and kept up to date. You can learn more details here.
Elasticsearch CRD Specification :
KubeDB uses the following crd fields to enable SSL/TLS encryption in Elasticsearch.
spec:enableSSLtls:issuerRefcertificates
Read about the fields in details from elasticsearch concept.
When enableSSL is set to true, the users must specify the tls.issuerRef field. KubeDB uses the issuer or clusterIssuer referenced in the tls.issuerRef field, and the certificate specs provided in tls.certificates to generate certificate secrets using Issuer/ClusterIssuer specification. These certificate secrets including ca.crt, tls.crt and tls.key are used to configure both transport-layer (node-to-node) and HTTP-layer (client-to-node) TLS in Elasticsearch.
How TLS/SSL configures in Elasticsearch
The following figure shows how KubeDB enterprise used to configure TLS/SSL in Elasticsearch. Open the image in a new tab to see the enlarged version.
Deploying Elasticsearch with TLS/SSL configuration process consists of the following steps:
At first, a user creates an
Issuer/ClusterIssuercr.Then the user creates an
ElasticsearchCR withenableSSL: truewhich refers to theIssuer/ClusterIssuerCR that the user created in the previous step.KubeDBProvisioner operator watches for theElasticsearchcr.When it finds one, it creates
Secret,Service, etc. for theElasticsearchcluster.KubeDBOps-manager operator watches forElasticsearch(5c),Issuer/ClusterIssuer(5b),SecretandService(5a).When it finds all the resources(
Elasticsearch,Issuer/ClusterIssuer,Secret,Service), it createsCertificatesby usingtls.issuerRefandtls.certificatesfield specification fromElasticsearchcr.cert-managerwatches for certificates.When it finds one, it creates certificate secrets
tls-secrets(transport and HTTP secrets etc.) that hold the actual certificate signed by the CA, containingca.crt,tls.crtandtls.key.KubeDBProvisioner operator watches for the Certificate secretstls-secrets.When it finds all the tls-secrets, it creates the related
PetSetsso that Elasticsearch can be configured with TLS/SSL for both transport and HTTP layers.
In the next docs, we are going to show a step-by-step guide on how to configure an Elasticsearch cluster with TLS/SSL.































