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.
Kafka
What is Kafka
Kafka is a Kubernetes Custom Resource Definitions (CRD). It provides declarative configuration for Kafka in a Kubernetes native way. You only need to describe the desired database configuration in a Kafkaobject, and the KubeDB operator will create Kubernetes objects in the desired state for you.
Kafka Spec
As with all other Kubernetes objects, a Kafka needs apiVersion, kind, and metadata fields. It also needs a .spec section. Below is an example Kafka object.
apiVersion: kubedb.com/v1alpha2
kind: Kafka
metadata:
name: kafka
namespace: demo
spec:
authSecret:
name: kafka-admin-cred
enableSSL: true
healthChecker:
failureThreshold: 3
periodSeconds: 20
timeoutSeconds: 10
keystoreCredSecret:
name: kafka-keystore-cred
podTemplate:
metadata:
annotations:
passMe: ToDatabasePod
labels:
thisLabel: willGoToPod
controller:
annotations:
passMe: ToStatefulSet
labels:
thisLabel: willGoToSts
storageType: Durable
terminationPolicy: DoNotTerminate
tls:
certificates:
- alias: server
secretName: kafka-server-cert
- alias: client
secretName: kafka-client-cert
issuerRef:
apiGroup: cert-manager.io
kind: Issuer
name: kafka-ca-issuer
topology:
broker:
replicas: 3
resources:
limits:
memory: 1Gi
requests:
cpu: 500m
memory: 1Gi
storage:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: standard
suffix: broker
controller:
replicas: 3
resources:
limits:
memory: 1Gi
requests:
cpu: 500m
memory: 1Gi
storage:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: standard
suffix: controller
monitor:
agent: prometheus.io/operator
prometheus:
exporter:
port: 9091
serviceMonitor:
labels:
release: prometheus
interval: 10s
version: 3.4.0
spec.version
spec.version is a required field specifying the name of the KafkaVersion crd where the docker images are specified. Currently, when you install KubeDB, it creates the following Kafka resources,
3.3.03.3.23.4.0
spec.replicas
spec.replicas the number of members in Kafka replicaset.
If spec.topology is set, then spec.replicas needs to be empty. Instead use spec.topology.controller.replicas and spec.topology.broker.replicas. You need to set both of them for topology clustering.
KubeDB uses PodDisruptionBudget to ensure that majority of these replicas are available during voluntary disruptions so that quorum is maintained.
spec.authSecret
spec.authSecret is an optional field that points to a Secret used to hold credentials for kafka admin user. If not set, KubeDB operator creates a new Secret {kafka-object-name}-auth for storing the password for admin user for each Kafka object.
We can use this field in 3 mode.
- Using an external secret. In this case, You need to create an auth secret first with required fields, then specify the secret name when creating the Kafka object using
spec.authSecret.name& setspec.authSecret.externallyManagedto true.
authSecret:
name: <your-created-auth-secret-name>
externallyManaged: true
- Specifying the secret name only. In this case, You need to specify the secret name when creating the Kafka object using
spec.authSecret.name.externallyManagedis by default false.
authSecret:
name: <intended-auth-secret-name>
- Let KubeDB do everything for you. In this case, no work for you.
AuthSecret contains a user key and a password key which contains the username and password respectively for Kafka admin user.
Example:
$ kubectl create secret generic kf-auth -n demo \
--from-literal=username=jhon-doe \
--from-literal=password=6q8u_2jMOW-OOZXk
secret "kf-auth" created
apiVersion: v1
data:
password: NnE4dV8yak1PVy1PT1pYaw==
username: amhvbi1kb2U=
kind: Secret
metadata:
name: kf-auth
namespace: demo
type: Opaque
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.topology
spec.topology represents the topology configuration for Kafka cluster in KRaft mode.
When spec.topology is set, the following fields needs to be empty, otherwise validating webhook will throw error.
spec.replicasspec.podTemplatespec.storage
spec.topology.broker
broker represents configuration for brokers of Kafka. In KRaft Topology mode clustering each pod can act as a single dedicated Kafka broker.
Available configurable fields:
topology.broker:replicas(: "1") - is anoptionalfield to specify the number of nodes (ie. pods ) that act as the dedicated Kafkabrokerpods. Defaults to1.suffix(: "broker") - is anoptionalfield that is added as the suffix of the broker StatefulSet name. Defaults tobroker.storageis arequiredfield that specifies how much storage to claim for each of thebrokerpods.resources(: "cpu: 500m, memory: 1Gi") - is anoptionalfield that specifies how much computational resources to request or to limit for each of thebrokerpods.
spec.topology.controller
controller represents configuration for controllers of Kafka. In KRaft Topology mode clustering each pod can act as a single dedicated Kafka controller that preserves metadata for the whole cluster and participated in leader election.
Available configurable fields:
topology.controller:replicas(: "1") - is anoptionalfield to specify the number of nodes (ie. pods ) that act as the dedicated Kafkacontrollerpods. Defaults to1.suffix(: "controller") - is anoptionalfield that is added as the suffix of the controller StatefulSet name. Defaults tocontroller.storageis arequiredfield that specifies how much storage to claim for each of thecontrollerpods.resources(: "cpu: 500m, memory: 1Gi") - is anoptionalfield that specifies how much computational resources to request or to limit for each of thecontrollerpods.
spec.enableSSL
spec.enableSSL is an optional field that specifies whether to enable TLS to HTTP layer. The default value of this field is false.
spec:
enableSSL: true
spec.tls
spec.tls specifies the TLS/SSL configurations. The KubeDB operator supports TLS management by using the cert-manager. Currently, the operator only supports the PKCS#8 encoded certificates.
spec:
tls:
issuerRef:
apiGroup: "cert-manager.io"
kind: Issuer
name: kf-issuer
certificates:
- alias: server
privateKey:
encoding: PKCS8
secretName: kf-client-cert
subject:
organizations:
- kubedb
- alias: http
privateKey:
encoding: PKCS8
secretName: kf-server-cert
subject:
organizations:
- kubedb
The spec.tls contains the following fields:
tls.issuerRef- is anoptionalfield that references to theIssuerorClusterIssuercustom resource object of cert-manager. It is used to generate the necessary certificate secrets for Elasticsearch. If theissuerRefis not specified, the operator creates a self-signed CA and also creates necessary certificate (valid: 365 days) secrets using that CA.apiGroup- is the group name of the resource that is being referenced. Currently, the only supported value iscert-manager.io.kind- is the type of resource that is being referenced. The supported values areIssuerandClusterIssuer.name- is the name of the resource (IssuerorClusterIssuer) that is being referenced.
tls.certificates- is anoptionalfield that specifies a list of certificate configurations used to configure the certificates. It has the following fields:alias- represents the identifier of the certificate. It has the following possible value:transport- is used for the transport layer certificate configuration.http- is used for the HTTP layer certificate configuration.admin- is used for the admin certificate configuration. Available for theSearchGuardand theOpenDistroauth-plugins.metrics-exporter- is used for the metrics-exporter sidecar certificate configuration.
secretName- (string|"<database-name>-alias-cert") - specifies the k8s secret name that holds the certificates.subject- specifies anX.509distinguished name (DN). It has the following configurable fields:organizations([]string|nil) - is a list of organization names.organizationalUnits([]string|nil) - is a list of organization unit names.countries([]string|nil) - is a list of country names (ie. Country Codes).localities([]string|nil) - is a list of locality names.provinces([]string|nil) - is a list of province names.streetAddresses([]string|nil) - is a list of street addresses.postalCodes([]string|nil) - is a list of postal codes.serialNumber(string|"") is a serial number.
For more details, visit here.
duration(string|"") - is the period during which the certificate is valid. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as"300m","1.5h"or"20h45m". Valid time units are “ns”, “us” (or “µs”), “ms”, “s”, “m”, “h”.renewBefore(string|"") - is a specifiable time before expiration duration.dnsNames([]string|nil) - is a list of subject alt names.ipAddresses([]string|nil) - is a list of IP addresses.uris([]string|nil) - is a list of URI Subject Alternative Names.emailAddresses([]string|nil) - is a list of email Subject Alternative Names.
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 Kafka cluster using emptyDir volume.
spec.storage
If you set spec.storageType: to Durable, then spec.storage is a required field that 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:
NB. If spec.topology is set, then spec.storage needs to be empty. Instead use spec.topology.<controller/broker>.storage
spec.monitor
Kafka managed by KubeDB can be monitored with Prometheus operator out-of-the-box. To learn more,
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 Kafka cluster.
KubeDB accept following fields to set in spec.podTemplate:
- metadata:
- annotations (pod’s annotation)
- labels (pod’s labels)
- controller:
- annotations (statefulset’s annotation)
- labels (statefulset’s labels)
- spec:
- args
- env
- resources
- initContainers
- imagePullSecrets
- nodeSelector
- affinity
- serviceAccountName
- schedulerName
- tolerations
- priorityClassName
- priority
- securityContext
- livenessProbe
- readinessProbe
- lifecycle
You can check out the full list here. Uses of some field of spec.podTemplate is described below,
NB. If spec.topology is set, then spec.podTemplate needs to be empty. Instead use spec.topology.<controller/broker>.podTemplate
spec.podTemplate.spec.args
spec.podTemplate.spec.args is an optional field. This can be used to provide additional arguments to database installation.
spec.podTemplate.spec.env
spec.podTemplate.spec.env is an optional field that specifies the environment variables to pass to the Kafka docker image.
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.resources
spec.podTemplate.spec.resources is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit here.
spec.serviceTemplates
You can also provide template for the services created by KubeDB operator for Kafka cluster through spec.serviceTemplates. This will allow you to set the type and other properties of the services.
KubeDB allows following fields to set in spec.serviceTemplates:
aliasrepresents the identifier of the service. It has the following possible value:statsis used for the exporter service identification.
- metadata:
- labels
- 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 Kafka crd or which resources KubeDB should keep or delete when you delete Kafka crd. KubeDB provides following four termination policies:
- DoNotTerminate
- WipeOut
When terminationPolicy is DoNotTerminate, KubeDB takes advantage of ValidationWebhook feature in Kubernetes 1.9.0 or later clusters to implement DoNotTerminate feature. If admission webhook is enabled, DoNotTerminate prevents users from deleting the database as long as the spec.terminationPolicy is set to DoNotTerminate.
spec.healthChecker
It defines the attributes for the health checker.
spec.healthChecker.periodSecondsspecifies how often to perform the health check.spec.healthChecker.timeoutSecondsspecifies the number of seconds after which the probe times out.spec.healthChecker.failureThresholdspecifies minimum consecutive failures for the healthChecker to be considered failed.spec.healthChecker.disableWriteCheckspecifies whether to disable the writeCheck or not.
Know details about KubeDB Health checking from this blog post.
Next Steps
- Learn how to use KubeDB to run a Apache Kafka cluster here.
- Deploy dedicated topology cluster for Apache Kafka
- Deploy combined cluster for Apache Kafka
- Monitor your Kafka cluster with KubeDB using
out-of-the-boxPrometheus operator. - Detail concepts of KafkaVersion object.
- Learn to use KubeDB managed Kafka objects using CLIs.
- Want to hack on KubeDB? Check our contribution guidelines.






























