# kafka-operator **Repository Path**: mirrors_adobe/kafka-operator ## Basic Information - **Project Name**: kafka-operator - **Description**: Oh no! Yet another Kafka operator for Kubernetes - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-09-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
   
--- [](https://goreportcard.com/report/github.com/adobe/koperator)    
# Koperator Koperator is an open-source operator that automates the provisioning, management, and autoscaling of Apache Kafka clusters on Kubernetes. Unlike other solutions that rely on StatefulSets, Koperator has been built with a unique architecture that provides greater flexibility and functionality for managing Apache Kafka. This architecture allows for fine-grained configuration and management of individual brokers. Some of the main features of Koperator are: - the provisioning of secure and production-ready Kafka clusters - fine-grained broker-by-broker configuration support - advanced and highly configurable external access - graceful Kafka cluster scaling and rebalancing - detailed Prometheus metrics - encrypted communication using SSL - automatic reaction and self-healing based on alerts using [Cruise Control](https://github.com/linkedin/cruise-control) - graceful rolling upgrades - advanced topic and user management via Kubernetes Custom Resources - Cruise Control task management via Kubernetes Custom Resources ## AI Code Wiki Google indexes this repo at: https://codewiki.google/github.com/adobe/koperator ## Architecture Kafka is a stateful application, and the Kafka Broker is a server that can create and form a cluster with other Brokers. Each Broker has its own unique configuration, the most important of which is the unique broker ID. Most Kubernetes operators that manage Kafka rely on [`StatefulSets`](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/) to create a Kafka Cluster. While StatefulSets provide unique Broker IDs generated during Pod startup, networking between brokers with headless services, and unique Persistent Volumes for Brokers, they have a few restrictions. For example, Broker configurations cannot be modified independently, and a specific Broker cannot be removed from the cluster - a StatefulSet always removes the most recently created Broker. Furthermore, multiple, different Persistent Volumes cannot be used for each Broker. *Koperator takes a different approach by using simple `Pods`, `ConfigMaps`, and `PersistentVolumeClaims` instead of `StatefulSets`. These resources allow us to build an Operator that is better suited to manage Apache Kafka.* With Koperator, you can modify the configuration of unique Brokers, remove specific Brokers from clusters, and use multiple Persistent Volumes for each Broker. If you want to learn more about our design motivations and the scenarios that drove us to create Koperator, please continue reading on our [documentation page](https://opensource.adobe.com/koperator/docs/scenarios/).  ## Quick start This quick start guide will walk you through the process of deploying Koperator on an existing Kubernetes cluster and provisioning a Kafka cluster using its custom resources. ### Prerequisites To complete this guide, you will need a Kubernetes cluster (with a suggested minimum of 6 vCPUs and 8 GB RAM). You can run the cluster locally using Kind or Minikube. > The quick start will help you set up a functioning Kafka cluster on Kubernetes. However, it does not include guidance on the installation of Prometheus and cert-manager, which are necessary for some of the more advanced functionality. #### Install ZooKeeper The version of Kafka that is installed by the operator requires Apache ZooKeeper. You'll need to deploy a ZooKeeper cluster if you don’t already have one. 1. Install ZooKeeper using [Pravega’s Zookeeper Operator](https://github.com/pravega/zookeeper-operator). ```sh helm install zookeeper-operator --repo https://charts.pravega.io zookeeper-operator --namespace=zookeeper --create-namespace ``` 1. Create a ZooKeeper cluster. ```sh kubectl create -f - <