You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
New to KubeDB? Please start here.
Elasticsearch
What is Elasticsearch
Elasticsearch is a Kubernetes Custom Resource Definitions (CRD). It provides declarative configuration for Elasticsearch in a Kubernetes native way. You only need to describe the desired database configuration in an Elasticsearch object, and the KubeDB operator will create Kubernetes objects in the desired state for you.
Elasticsearch Spec
As with all other Kubernetes objects, an Elasticsearch needs apiVersion, kind, and metadata fields. It also needs a .spec section. Below is an example Elasticsearch object.
apiVersion: kubedb.com/v1alpha2
kind: Elasticsearch
metadata:
name: e1
namespace: demo
spec:
version: "6.3-v1"
replicas: 2
maxUnavailable: 0
authPlugin: "SearchGuard"
enableSSL: true
authSecret:
name: e1-auth
storageType: "Durable"
storage:
storageClassName: standard
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
init:
script:
configMap:
name: es-init-script
monitor:
agent: prometheus.io/operator
prometheus:
serviceMonitor:
labels:
app: kubedb
interval: 10s
configSecret:
name: es-custom-config
podTemplate:
annotations:
passMe: ToDatabasePod
controller:
annotations:
passMe: ToStatefulSet
spec:
serviceAccountName: my-service-account
schedulerName: my-scheduler
nodeSelector:
disktype: ssd
imagePullSecrets:
- name: myregistrykey
env:
- name: ES_JAVA_OPTS
value: "-Xms128m -Xmx128m"
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
serviceTemplate:
annotations:
passMe: ToService
spec:
type: NodePort
ports:
- name: http
port: 9200
targetPort: http
terminationPolicy: "DoNotTerminate"
spec.version
spec.version is a required field that specifies the name of the ElasticsearchVersion crd where the docker images are specified. Currently, when you install KubeDB, it creates the following ElasticsearchVersion resources,
5.6,5.6-v1,5.6.4,5.6.4-v16.2,6.2-v1,6.2.4,6.2.4-v1,6.3,6.3-v1,6.3.0,6.3.0-v1,6.4,6.4.0,6.5,6.5.3,6.8,6.8.07.2,7.2.07.3,7.3.2
spec.topology
spec.topology is an optional field that provides a way to configure different types of nodes for Elasticsearch cluster. This field enables you to specify how many nodes you want to act as master, data and client node. You can also specify how much storage and resources to use for each types of nodes independently.
You can specify the following things in spec.topology field,
spec.topology.master.replicasis an optional field to specify how many pods we want asmasternode. If not set, this defaults to 1..prefixis an optional field to be used as the prefix of StatefulSet name..storageis an optional field that specifies how much storage to use formasternode..resourcesis an optional field that specifies how much compute resources to request formasternode..maxUnavailableis an optional field that specifies the exact number of pods that can be safely evicted before pod disruption budget kicks in. KubeDB uses Pod Disruption Budget to ensure that desired number of replicas are available during voluntary disruptions so that no data loss is occurred. Users need to fill upspec.topology.master.maxUnavailablefield to specify the exact number of replicas that can be evicted before pod disruption budget kicks in.
spec.topology.data.replicasis an optional field to specify how many pods we want asdatanode. If not set, this defaults to 1..prefixis an optional field to be used as the prefix of StatefulSet name..storageis an optional field that specifies how much storage to use fordatanode..resourcesis an optional field that specifies how much compute resources to request fordatanode..maxUnavailableis an optional field that specifies the exact number of pods that can be safely evicted before pod disruption budget kicks in. KubeDB uses Pod Disruption Budget to ensure that desired number of replicas are available during voluntary disruptions so that no data loss is occurred. Users need to fill upspec.topology.data.maxUnavailablefield to specify the exact number of replicas that can be evicted before pod disruption budget kicks in.
spec.topology.client.replicasis an optional field to specify how many pods we want asclientnode. If not set, this defaults to 1..prefixis an optional field to be used as the prefix of StatefulSet name..storageis an optional field that specifies how much storage to use forclientnode..resourcesis an optional field that specifies how much compute resources to request forclientnode..maxUnavailableis an optional field that specifies the exact number of pods that can be safely evicted before pod disruption budget kicks in. KubeDB uses Pod Disruption Budget to ensure that desired number of replicas are available during voluntary disruptions so that no data loss is occurred. Users need to fill upspec.topology.client.maxUnavailablefield to specify the exact number of replicas that can be evicted before pod disruption budget kicks in.
Note: Any two of them can’t have the same prefix.
A sample configuration for spec.topology field is shown below,
topology:
master:
prefix: master
replicas: 1
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
data:
prefix: data
replicas: 3
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
resources:
requests:
memory: "512Mi"
cpu: "250m"
limits:
memory: "1Gi"
cpu: "500m"
client:
prefix: client
replicas: 2
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
If you specify spec.topology field then you are not allowed to specify following fields in Elasticsearch crd.
spec.replicasspec.storagespec.podTemplate.spec.resources
If you do not specify
spec.topologyfield, all nodes of your Elasticsearch cluster will work asmaster,dataandclientnode simultaneously.
spec.replicas
spec.replicas is an optional field that can be used if spec.topology is not specified. This field specifies the number of pods in the Elasticsearch cluster. The default value of this field is 1.
KubeDB uses Pod Disruption Budget to ensure that desired number of replicas are available during voluntary disruptions so that no data loss is occurred. Users need to fill up spec.maxUnavailable field to specify the exact number of replicas that can be evicted before pod disruption budget kicks in.
spec.authPlugin
spec.authPlugin is an optional field that specifies which plugin to use for authentication. Currently, this field accepts None or SearchGuard. By default, KubeDB uses Search Guard for authentication. If you specify None in this field, KubeDB will disable Search Guard plugin and your database will not be protected anymore.
spec.maxUnavailable
spec.maxUnavailable is an optional field that is used to specify the exact number of cluster replicas that can be safely evicted before pod disruption budget kicks in to prevent unwanted data loss.
spec.enableSSL
spec.enableSSL is an optional field that specifies whether to enable SSL for Search Guard. The default value of this field is false.
spec.certificateSecret
spec.certificateSecret is an optional field that points a Secret used to hold the following information for the certificate.
root.pem:The root CA inpemformatroot.jks:The root CA injksformatnode.jks:The node certificate used for the transport layerclient.jks:The client certificate used for http layersgadmin.jks:The admin certificate used to change the Search Guard configuration.key_pass:The key password used to encrypt certificates.
If not set, KubeDB operator creates a new Secret {Elasticsearch name}-cert with generated certificates. If you want to use an existing secret, please specify that when creating Elasticsearch using spec.certificateSecret.secretName.
spec.authSecret
spec.authSecret is an optional field that points to a Secret used to hold credentials and search guard configuration.
Following keys are used to hold credentials
ADMIN_USERNAME:Username for superuser.ADMIN_PASSWORD:Password for superuser.READALL_USERNAMEUsername forreadalluser.READALL_PASSWORD:Password forreadalluser.
Following keys are used for search-guard configuration
sg_config.yml:Configure authenticators and authorization backendssg_internal_users.yml:user and hashed passwords (hash with hasher.sh)sg_roles_mapping.yml:map backend roles, hosts and users to rolessg_action_groups.yml:define permission groupssg_roles.yml:define the roles and the associated permissions
If not set, KubeDB operator creates a new Secret {Elasticsearch name}-auth with generated credentials and default search-guard configuration. If you want to use an existing secret, please specify that when creating Elasticsearch using spec.authSecret.name. Secrets provided by users are not managed by KubeDB, and therefore, won’t be modified or garbage collected by the KubeDB operator (version 0.13.0 and higher).
spec.storageType
spec.storageType is an optional field that specifies the type of storage to use for database. It can be either Durable or Ephemeral. The default value of this field is Durable. If Ephemeral is used then KubeDB will create Elasticsearch database using emptyDir volume. In this case, you don’t have to specify spec.storage field.
spec.storage
If you don’t set spec.storageType: to Ephemeral and if you don’t specify spec.topology field then spec.storage field is required. This field specifies the StorageClass of PVCs dynamically allocated to store data for the database. This storage spec will be passed to the StatefulSet created by KubeDB operator to run database pods. You can specify any StorageClass available in your cluster with appropriate resource requests.
spec.storage.storageClassNameis the name of the StorageClass used to provision PVCs. PVCs don’t necessarily have to request a class. A PVC with its storageClassName set equal to "" is always interpreted to be requesting a PV with no class, so it can only be bound to PVs with no class (no annotation or one set equal to “”). A PVC with no storageClassName is not quite the same and is treated differently by the cluster depending on whether the DefaultStorageClass admission plugin is turned on.spec.storage.accessModesuses the same conventions as Kubernetes PVCs when requesting storage with specific access modes.spec.storage.resourcescan be used to request specific quantities of storage. This follows the same resource model used by PVCs.
To learn how to configure spec.storage, please visit the links below:
spec.init
spec.init is an optional section that can be used to initialize a newly created Elasticsearch cluster from prior snapshots. To initialize from prior snapshots, set the spec.init.snapshotSource section when creating an Elasticsearch object. In this case, SnapshotSource must have the following information:
name:Name of the Snapshotnamespace:Namespace of the Snapshot
apiVersion: kubedb.com/v1alpha2
kind: Elasticsearch
metadata:
name: elasticsearch-db
spec:
version: "5.6-v1"
authSecret:
name: old-elasticsearch-auth
init:
snapshotSource:
name: "snapshot-xyz"
namespace: demo
In the above example, Elasticsearch cluster will be initialized from Snapshot snapshot-xyz in demo namespace. Here, KubeDB operator will launch a Job to initialize Elasticsearch, once StatefulSet pods are running. For details tutorial on how to initialize Elasticsearch from Stash backup, please visit here.
spec.monitor
Elasticsearch managed by KubeDB can be monitored with builtin-Prometheus and Prometheus operator out-of-the-box. To learn more,
spec.configSecret
spec.configSecret is an optional field that allows users to provide custom configuration for Elasticsearch. This field accepts a VolumeSource. So you can use any kubernetes supported volume source such as configMap, secret, azureDisk etc. To learn more about how to use a custom configuration file see here.
spec.podTemplate
KubeDB allows providing a template for database pod through spec.podTemplate. KubeDB operator will pass the information provided in spec.podTemplate to the StatefulSet created for Elasticsearch database.
KubeDB accept following fields to set in spec.podTemplate:
- metadata
- annotations (pod’s annotation)
- controller
- annotations (statefulset’s annotation)
- spec:
- env
- resources
- initContainers
- imagePullSecrets
- nodeSelector
- affinity
- serviceAccountName
- schedulerName
- tolerations
- priorityClassName
- priority
- securityContext
- livenessProbe
- readinessProbe
- lifecycle
Uses of some fields of spec.podTemplate are described below,
spec.podTemplate.spec.env
spec.podTemplate.spec.env is an optional field that specifies the environment variables to pass to the Elasticsearch docker image. To know about supported environment variables, please visit here.
A list of the supported environment variables, their permission to use in KubeDB and their default value is given below.
| Environment variables | Permission to use | Default value |
|---|---|---|
| CLUSTER_NAME | allowed | metadata.name |
| NODE_NAME | not allowed | Pod name |
| NODE_MASTER | not allowed | KubeDB sets it based on Elasticsearch crd sepcification |
| NODE_DATA | not allowed | KubeDB sets it based on Elasticsearch crd sepcification |
| NETWORK_HOST | allowed | _site_ |
| HTTP_ENABLE | allowed | If spec.topology is not specified then true. Otherwise, false for Master node and Data node. |
| HTTP_CORS_ENABLE | allowed | true |
| HTTP_CORS_ALLOW_ORIGIN | allowed | * |
| NUMBER_OF_MASTERS | allowed | (replicas/2)+1 |
| MAX_LOCAL_STORAGE_NODES | allowed | 1 |
| ES_JAVA_OPTS | allowed | -Xms128m -Xmx128m |
| ES_PLUGINS_INSTALL | allowed | Not set |
| SHARD_ALLOCATION_AWARENESS | allowed | "" |
| SHARD_ALLOCATION_AWARENESS_ATTR | allowed | "" |
| MEMORY_LOCK | allowed | true |
| REPO_LOCATIONS | allowed | "" |
| PROCESSORS | allowed | 1 |
Note that, KubeDB does not allow NODE_NAME, NODE_MASTER, and NODE_DATA environment variables to set in spec.podTemplate.spec.env. KubeDB operator set them based on Elasticsearch crd specification.
If you try to set any these forbidden environment variable in Elasticsearch crd, KubeDB operator will reject the request with following error,
Error from server (Forbidden): error when creating "./elasticsearch.yaml": admission webhook "elasticsearch.validators.kubedb.com" denied the request: environment variable NODE_NAME is forbidden to use in Elasticsearch spec
Also, note that KubeDB does not allow to update the environment variables as updating them does not have any effect once the database is created. If you try to update environment variables, KubeDB operator will reject the request with following error,
Error from server (BadRequest): error when applying patch:
...
for: "./elasticsearch.yaml": admission webhook "elasticsearch.validators.kubedb.com" denied the request: precondition failed for:
...
At least one of the following was changed:
apiVersion
kind
name
namespace
spec.version
spec.topology.*.prefix
spec.topology.*.storage
spec.enableSSL
spec.certificateSecret
spec.authSecret
spec.storageType
spec.storage
spec.nodeSelector
spec.init
spec.env
spec.podTemplate.spec.imagePullSecrets
spec.podTemplate.spec.imagePullSecrets is an optional field that points to secrets to be used for pulling docker image when you are using a private docker registry. For more details on how to use private docker registry, please visit here.
spec.podTemplate.spec.nodeSelector
spec.podTemplate.spec.nodeSelector is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see here .
spec.podTemplate.spec.serviceAccountName
serviceAccountName is an optional field supported by KubeDB Operator (version 0.13.0 and higher) that can be used to specify a custom service account to fine tune role based access control.
If this field is left empty, the KubeDB operator will create a service account name matching Elasticsearch crd name. Role and RoleBinding that provide necessary access permissions will also be generated automatically for this service account.
If a service account name is given, but there’s no existing service account by that name, the KubeDB operator will create one, and Role and RoleBinding that provide necessary access permissions will also be generated for this service account.
If a service account name is given, and there’s an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide here to grant necessary permissions in this scenario.
spec.podTemplate.spec.resources
spec.podTemplate.spec.resources is an optional field. If you didn’t specify spec.topology field then this can be used to request compute resources required by the database pods. To learn more, visit here.
spec.serviceTemplate
You can also provide a template for the services created by KubeDB operator for Elasticsearch database through spec.serviceTemplate. This will allow you to set the type and other properties of the services.
KubeDB allows following fields to set in spec.serviceTemplate:
- metadata:
- annotations
- spec:
- type
- ports
- clusterIP
- externalIPs
- loadBalancerIP
- loadBalancerSourceRanges
- externalTrafficPolicy
- healthCheckNodePort
- sessionAffinityConfig
See here to understand these fields in detail.
spec.terminationPolicy
terminationPolicy gives flexibility whether to nullify(reject) the delete operation of Elasticsearch crd or which resources KubeDB should keep or delete when you delete Elasticsearch crd. KubeDB provides following four termination policies:
- DoNotTerminate
- Halt
- Delete (
Default) - WipeOut
When terminationPolicy is DoNotTerminate, KubeDB takes advantage of ValidationWebhook feature in Kubernetes 1.9.0 or later clusters to provide safety from accidental deletion of database. If admission webhook is enabled, KubeDB prevents users from deleting the database as long as the spec.terminationPolicy is set to DoNotTerminate.
Following table show what KubeDB does when you delete Elasticsearch crd for different termination policies,
| Behavior | DoNotTerminate | Halt | Delete | WipeOut |
|---|---|---|---|---|
| 1. Block Delete operation | ✓ | ✗ | ✗ | ✗ |
| 2. Create Dormant Database | ✗ | ✓ | ✗ | ✗ |
| 3. Delete StatefulSet | ✗ | ✓ | ✓ | ✓ |
| 4. Delete Services | ✗ | ✓ | ✓ | ✓ |
| 5. Delete PVCs | ✗ | ✗ | ✓ | ✓ |
| 6. Delete Secrets | ✗ | ✗ | ✗ | ✓ |
| 7. Delete Snapshots | ✗ | ✗ | ✗ | ✓ |
| 8. Delete Snapshot data from bucket | ✗ | ✗ | ✗ | ✓ |
If you don’t specify spec.terminationPolicy KubeDB uses Halt termination policy by default.
Next Steps
- Learn how to use KubeDB to run an Elasticsearch database here.
- Want to hack on KubeDB? Check our contribution guidelines.






























