Overview
KubeDB is the Kubernetes Native Database Management Solution which simplifies and automates routine database tasks such as Provisioning, Monitoring, Upgrading, Patching, Scaling, Volume Expansion, Backup, Recovery, Failure detection, and Repair for various popular databases on private and public clouds. The databases that KubeDB supports are Elasticsearch, Kafka, MySQL, MongoDB, MariaDB, Redis, PostgreSQL, ProxySQL, Percona XtraDB, Memcached and PgBouncer. You can find the guides to all the supported databases in KubeDB . KubeDB provides support not only for the official Elasticsearch by Elastic and OpenSearch by AWS, but also other open source distributions like SearchGuard and OpenDistro . KubeDB provides all of these distribution’s support under the Elasticsearch CR of KubeDB. In this tutorial we will Deploy Elasticsearch and Kibana in Google Kubernetes Engine (GKE). We will cover the following steps:
- Install KubeDB
- Deploy Elasticsearch Topology Cluster
- Deploy Kibana
- Read/Write Data through Kibana
Get Cluster ID
We need the cluster ID to get the KubeDB License. To get cluster ID, we can run the following command:
$ kubectl get ns kube-system -o jsonpath='{.metadata.uid}'
8e336615-0dbb-4ae8-b72f-2e7ec34c399d
Get License
Go to Appscode License Server to get the license.txt file. For this tutorial we will use KubeDB Enterprise Edition.
Install KubeDB
We will use helm to install KubeDB. Please install helm here
if it is not already installed.
Now, let’s install KubeDB
.
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm search repo appscode/kubedb
NAME CHART VERSION APP VERSION DESCRIPTION
appscode/kubedb v2023.11.2 v2023.11.2 KubeDB by AppsCode - Production ready databases...
appscode/kubedb-autoscaler v0.22.0 v0.22.0 KubeDB Autoscaler by AppsCode - Autoscale KubeD...
appscode/kubedb-catalog v2023.11.2 v2023.11.2 KubeDB Catalog by AppsCode - Catalog for databa...
appscode/kubedb-community v0.24.2 v0.24.2 KubeDB Community by AppsCode - Community featur...
appscode/kubedb-crds v2023.11.2 v2023.11.2 KubeDB Custom Resource Definitions
appscode/kubedb-dashboard v0.13.0 v0.13.0 KubeDB Dashboard by AppsCode
appscode/kubedb-enterprise v0.11.2 v0.11.2 KubeDB Enterprise by AppsCode - Enterprise feat...
appscode/kubedb-grafana-dashboards v2023.11.2 v2023.11.2 A Helm chart for kubedb-grafana-dashboards by A...
appscode/kubedb-metrics v2023.11.2 v2023.11.2 KubeDB State Metrics
appscode/kubedb-one v2023.11.2 v2023.11.2 KubeDB and Stash by AppsCode - Production ready...
appscode/kubedb-ops-manager v0.24.0 v0.24.0 KubeDB Ops Manager by AppsCode - Enterprise fea...
appscode/kubedb-opscenter v2023.11.2 v2023.11.2 KubeDB Opscenter by AppsCode
appscode/kubedb-provisioner v0.37.0 v0.37.0 KubeDB Provisioner by AppsCode - Community feat...
appscode/kubedb-schema-manager v0.13.0 v0.13.0 KubeDB Schema Manager by AppsCode
appscode/kubedb-ui v2023.10.18 0.4.6 A Helm chart for Kubernetes
appscode/kubedb-ui-server v2021.12.21 v2021.12.21 A Helm chart for kubedb-ui-server by AppsCode
appscode/kubedb-webhook-server v0.13.0 v0.13.0 KubeDB Webhook Server by AppsCode
# Install KubeDB Enterprise operator chart
$ helm install kubedb appscode/kubedb \
--version v2023.11.2 \
--namespace kubedb --create-namespace \
--set kubedb-provisioner.enabled=true \
--set kubedb-ops-manager.enabled=true \
--set kubedb-autoscaler.enabled=true \
--set kubedb-dashboard.enabled=true \
--set kubedb-schema-manager.enabled=true \
--set-file global.license=/path/to/the/license.txt
Let’s verify the installation:
$ kubectl get pods --all-namespaces -l "app.kubernetes.io/instance=kubedb"
NAMESPACE NAME READY STATUS RESTARTS AGE
kubedb kubedb-kubedb-autoscaler-74dc98db4f-dt82t 1/1 Running 0 2m13s
kubedb kubedb-kubedb-dashboard-7846755c49-drwj6 1/1 Running 0 2m13s
kubedb kubedb-kubedb-ops-manager-7cd5b578d6-ljg5b 1/1 Running 0 2m13s
kubedb kubedb-kubedb-provisioner-5599c98979-xrn6c 1/1 Running 0 2m13s
kubedb kubedb-kubedb-schema-manager-77f6cb6f4f-mjvvd 1/1 Running 0 2m13s
kubedb kubedb-kubedb-webhook-server-fbfcd8994-kcpmd 1/1 Running 0 2m13s
We can list the CRD Groups that have been registered by the operator by running the following command:
$ kubectl get crd -l app.kubernetes.io/name=kubedb
NAME CREATED AT
elasticsearchautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:19Z
elasticsearchdashboards.dashboard.kubedb.com 2023-11-02T10:36:18Z
elasticsearches.kubedb.com 2023-11-02T10:36:18Z
elasticsearchopsrequests.ops.kubedb.com 2023-11-02T10:36:33Z
elasticsearchversions.catalog.kubedb.com 2023-11-02T10:33:32Z
etcds.kubedb.com 2023-11-02T10:36:32Z
etcdversions.catalog.kubedb.com 2023-11-02T10:33:32Z
kafkaopsrequests.ops.kubedb.com 2023-11-02T10:37:33Z
kafkas.kubedb.com 2023-11-02T10:37:03Z
kafkaversions.catalog.kubedb.com 2023-11-02T10:33:33Z
mariadbautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:20Z
mariadbdatabases.schema.kubedb.com 2023-11-02T10:36:34Z
mariadbopsrequests.ops.kubedb.com 2023-11-02T10:37:10Z
mariadbs.kubedb.com 2023-11-02T10:36:34Z
mariadbversions.catalog.kubedb.com 2023-11-02T10:33:33Z
memcacheds.kubedb.com 2023-11-02T10:36:34Z
memcachedversions.catalog.kubedb.com 2023-11-02T10:33:33Z
mongodbautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:21Z
mongodbdatabases.schema.kubedb.com 2023-11-02T10:36:26Z
mongodbopsrequests.ops.kubedb.com 2023-11-02T10:36:37Z
mongodbs.kubedb.com 2023-11-02T10:36:28Z
mongodbversions.catalog.kubedb.com 2023-11-02T10:33:34Z
mysqlautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:22Z
mysqldatabases.schema.kubedb.com 2023-11-02T10:36:20Z
mysqlopsrequests.ops.kubedb.com 2023-11-02T10:37:06Z
mysqls.kubedb.com 2023-11-02T10:36:22Z
mysqlversions.catalog.kubedb.com 2023-11-02T10:33:34Z
perconaxtradbautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:23Z
perconaxtradbopsrequests.ops.kubedb.com 2023-11-02T10:37:25Z
perconaxtradbs.kubedb.com 2023-11-02T10:36:58Z
perconaxtradbversions.catalog.kubedb.com 2023-11-02T10:33:34Z
pgbouncers.kubedb.com 2023-11-02T10:36:55Z
pgbouncerversions.catalog.kubedb.com 2023-11-02T10:33:35Z
postgresautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:25Z
postgresdatabases.schema.kubedb.com 2023-11-02T10:36:32Z
postgreses.kubedb.com 2023-11-02T10:36:33Z
postgresopsrequests.ops.kubedb.com 2023-11-02T10:37:19Z
postgresversions.catalog.kubedb.com 2023-11-02T10:33:35Z
proxysqlautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:25Z
proxysqlopsrequests.ops.kubedb.com 2023-11-02T10:37:22Z
proxysqls.kubedb.com 2023-11-02T10:37:01Z
proxysqlversions.catalog.kubedb.com 2023-11-02T10:33:36Z
publishers.postgres.kubedb.com 2023-11-02T10:37:36Z
redisautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:26Z
redises.kubedb.com 2023-11-02T10:37:01Z
redisopsrequests.ops.kubedb.com 2023-11-02T10:37:13Z
redissentinelautoscalers.autoscaling.kubedb.com 2023-11-02T10:36:26Z
redissentinelopsrequests.ops.kubedb.com 2023-11-02T10:37:29Z
redissentinels.kubedb.com 2023-11-02T10:37:03Z
redisversions.catalog.kubedb.com 2023-11-02T10:33:36Z
subscribers.postgres.kubedb.com 2023-11-02T10:37:40Z
Deploy Elasticsearch Topology Cluster
We are going to use the KubeDB-provided Custom Resource object Elasticsearch for deployment. The object will be deployed in demo namespace. So, let’s create the namespace first.
$ kubectl create namespace demo
namespace/demo created
Here is the yaml of Elasticsearch we are going to use:
apiVersion: kubedb.com/v1alpha2
kind: Elasticsearch
metadata:
name: es-cluster
namespace: demo
spec:
enableSSL: true
version: xpack-8.8.0
storageType: Durable
topology:
master:
replicas: 2
resources:
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
data:
replicas: 2
resources:
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
ingest:
replicas: 2
resources:
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
terminationPolicy: WipeOut
Here,
spec.version
- is the name of the ElasticsearchVersion CR. Here, we are using Elasticsearch versionxpack-8.8.0
of Elasticsearch distribution.spec.enableSSL
- specifies whether the HTTP layer is secured with certificates or not.spec.storageType
- specifies the type of storage that will be used for Elasticsearch database. It can beDurable
orEphemeral
. The default value of this field isDurable
. IfEphemeral
is used then KubeDB will create the Elasticsearch database usingEmptyDir
volume. In this case, you don’t have to specifyspec.storage
field. This is useful for testing purposes.spec.topology
- specifies the node-specific properties for the Elasticsearch cluster.spec.terminationPolicy
field is Wipeout means that the database will be deleted without restrictions. It can also be “Halt”, “Delete” and “DoNotTerminate”. Learn More about these checkout Termination Policy .
Let’s deploy the above yaml by the following command:
$ kubectl apply -f es-cluster.yaml
elasticsearch.kubedb.com/es-cluster created
However, KubeDB also provides dedicated node support for other node roles like data_hot
, data_warm
, data_cold
, data_frozen
, transform
, coordinating
, data_content
and ml
for Topology clustering
.
Once these are handled correctly and the Elasticsearch object is deployed, you will see that the following resources are created:
$ kubectl get all -n demo
NAME READY STATUS RESTARTS AGE
pod/es-cluster-data-0 1/1 Running 0 3m43s
pod/es-cluster-data-1 1/1 Running 0 3m5s
pod/es-cluster-ingest-0 1/1 Running 0 3m45s
pod/es-cluster-ingest-1 1/1 Running 0 2m59s
pod/es-cluster-master-0 1/1 Running 0 3m44s
pod/es-cluster-master-1 1/1 Running 0 3m2s
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/es-cluster ClusterIP 10.112.2.93 <none> 9200/TCP 3m50s
service/es-cluster-master ClusterIP None <none> 9300/TCP 3m50s
service/es-cluster-pods ClusterIP None <none> 9200/TCP 3m50s
NAME READY AGE
statefulset.apps/es-cluster-data 2/2 3m46s
statefulset.apps/es-cluster-ingest 2/2 3m48s
statefulset.apps/es-cluster-master 2/2 3m47s
NAME TYPE VERSION AGE
appbinding.appcatalog.appscode.com/es-cluster kubedb.com/elasticsearch 8.8.0 3m46s
NAME VERSION STATUS AGE
elasticsearch.kubedb.com/es-cluster xpack-8.8.0 Ready 3m55s
We have successfully deployed Elasticsearch cluster in GKE.
Deploy Kibana
apiVersion: dashboard.kubedb.com/v1alpha1
kind: ElasticsearchDashboard
metadata:
name: es-cluster-dashboard
namespace: demo
spec:
enableSSL: true
databaseRef:
name: es-cluster
terminationPolicy: WipeOut
Note: Elasticsearch Database and Elasticsearch dashboard should have to be deployed in the same namespace. In this tutorial, we use
demo
namespace for both cases.
spec.enableSSL
specifies whether the HTTP layer is secured with certificates or not.spec.databaseRef.name
refers to the Elasticsearch database name.spec.terminationPolicy
refers to the strategy to follow during dashboard deletion.Wipeout
means that the database will be deleted without restrictions. It can also beDoNotTerminate
which will cause a restriction to delete the dashboard. Learn More about these Termination Policy .
Let’s deploy the above yaml by the following command:
$ kubectl apply -f es-cluster-dashboard.yaml
elasticsearchdashboard.dashboard.kubedb.com/es-cluster-dashboard created
KubeDB will create the necessary resources to deploy the Elasticsearch dashboard according to the above specification. Let’s wait until the dashboard to be ready to use,
$ watch kubectl get elasticsearchdashboard -n demo
NAME TYPE DATABASE STATUS AGE
es-cluster-dashboard dashboard.kubedb.com/v1alpha1 es-cluster Ready 101s
Here, Elasticsearch Dashboard is in Ready
state.
Connect with Elasticsearch Dashboard
We will use port forwarding
to connect with our Elasticsearch database. Then we will use curl
to send HTTP
requests to check cluster health to verify that our Elasticsearch database is working well.
Port-forward the Service
KubeDB will create few Services to connect with the database. Let’s check the Services by following command,
$ kubectl get service -n demo
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
es-cluster ClusterIP 10.112.2.93 <none> 9200/TCP 6m49s
es-cluster-dashboard ClusterIP 10.112.14.172 <none> 5601/TCP 2m2s
es-cluster-master ClusterIP None <none> 9300/TCP 6m49s
es-cluster-pods ClusterIP None <none> 9200/TCP 6m49s
Here, we are going to use es-cluster-dashboard
Service to connect with the database. Now, let’s port-forward the es-cluster-dashboard
Service to the port 5601
to local machine:
$ kubectl port-forward -n demo service/es-cluster-dashboard 5601
Forwarding from 127.0.0.1:5601 -> 5601
Forwarding from [::1]:5601 -> 5601
Now, our Elasticsearch cluster dashboard is accessible at https://localhost:5601
.
Export the Credentials
KubeDB also create some Secrets for the database. Let’s check which Secrets have been created by KubeDB for our es-cluster
.
$ kubectl get secret -n demo | grep es-cluster
es-cluster-apm-system-cred kubernetes.io/basic-auth 2 7m26s
es-cluster-beats-system-cred kubernetes.io/basic-auth 2 7m26s
es-cluster-ca-cert kubernetes.io/tls 2 7m30s
es-cluster-client-cert kubernetes.io/tls 3 7m29s
es-cluster-config Opaque 1 7m29s
es-cluster-dashboard-ca-cert kubernetes.io/tls 2 2m44s
es-cluster-dashboard-config Opaque 2 2m43s
es-cluster-dashboard-server-cert kubernetes.io/tls 3 2m43s
es-cluster-elastic-cred kubernetes.io/basic-auth 2 7m29s
es-cluster-http-cert kubernetes.io/tls 3 7m29s
es-cluster-kibana-system-cred kubernetes.io/basic-auth 2 7m26s
es-cluster-logstash-system-cred kubernetes.io/basic-auth 2 7m26s
es-cluster-remote-monitoring-user-cred kubernetes.io/basic-auth 2 7m26s
es-cluster-transport-cert kubernetes.io/tls 3 7m30s
Now, we can connect to the database with es-cluster-elastic-cred
which contains the admin credentials to connect with the database.
Accessing Database Through Dashboard
To access the database through Dashboard, we have to get the credentials. We can do that by following command,
$ kubectl get secret -n demo es-cluster-elastic-cred -o jsonpath='{.data.username}' | base64 -d
elastic
$ kubectl get secret -n demo es-cluster-elastic-cred -o jsonpath='{.data.password}' | base64 -d
gaE5NykHTlCjJiiP
Now, let’s go to https://localhost:5601
from our browser and login by using those credentials.
After login successfully, we will see Elasticsearch Dashboard UI. Now, We are going to Dev tools
for running some queries into our Elasticsearch database.
Here, in Dev tools
we will use Console
section for running some queries. Let’s run GET /
query to check node informations.
GET /
Now, we are going to insert some sample data to our Elasticsearch cluster index music/_doc/1
by using PUT
query.
PUT music/_doc/1
{
"Playlist": {
"Song": "Take Me Home Country Roads",
"Artist": "John Denver",
"Album": "Poems, Prayers & Promises"
}
}
Let’s check that sample data in the index music/_doc/1
by using GET
query.
GET music/_doc/1
Now, we are going to update sample data in the index music/_doc/1
by using POST
query.
POST music/_doc/1
{
"Playlist": {
"Song": "Take Me Home Country Roads",
"Artist": "John Denver",
"Album": "Poems, Prayers & Promises",
"Released": "April 6, 1971"
}
}
Let’s verify the index music/_doc/1
again to see whether the data is updated or not.
GET music/_doc/1
We have made an in depth tutorial on Elasticsearch Hot-Warm-Cold Architecture Management with Kibana in Kubernetes Using KubeDB. You can have a look into the video below:
Support
To speak with us, please leave a message on our website .
To receive product announcements, follow us on Twitter .
To watch tutorials of various Production-Grade Kubernetes Tools Subscribe our YouTube channel.
More about Elasticsearch in Kubernetes
If you have found a bug with KubeDB or want to request for new features, please file an issue .