• Stars
    star
    764
  • Rank 58,918 (Top 2 %)
  • Language Mustache
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Confluent Platform Helm charts enable you to deploy Confluent Platform services on Kubernetes for development, test, and proof of concept environments.

Confluent Platform Helm Charts

You can use the Helm charts to deploy services on Kubernetes for development, test, and proof of concept environments.

Caution
Open Source Helm charts are not supported by Confluent.

If you want to use Confluent Platform on Kubernetes in a test or production environment, follow these instructions to install Confluent Operator.

The Confluent Platform Helm Charts enable you to deploy Confluent Platform components on Kubernetes for development, test, and proof of concept environments.

Installation

Installing helm chart
helm repo add confluentinc https://confluentinc.github.io/cp-helm-charts/   #(1)
helm repo update    #(2)
helm install confluentinc/cp-helm-charts --name my-confluent --version 0.6.0    #(3)
  1. Add confluentinc helm charts repo

  2. Update repo information

  3. Install Confluent Platform with release name «my-confluent» and version 0.6.0

Contributing

We welcome any contributions:

Note
It’s not officially supported repo, hence support is on "best effort" basis.
  • Report all enhancements, bugs, and tasks as GitHub issues

  • Provide fixes or enhancements by opening pull requests in GitHub

Documentation

Helm is an open-source packaging tool that helps you install applications and services on Kubernetes. Helm uses a packaging format called charts. Charts are a collection of YAML templates that describe a related set of Kubernetes resources.

This repository provides Helm charts for the following Confluent Platform services:

  • ZooKeeper

  • Kafka brokers

  • Kafka Connect

  • Confluent Schema Registry

  • Confluent REST Proxy

  • ksqlDB

  • Confluent Control Center

Environment Preparation

You must have a Kubernetes cluster that has Helm configured.

Tested Software

These Helm charts have been tested with the following software versions:

Warning
This guide assumes that you’re Helm 2 (tested with Helm 2.16). You can follow up on Helm 3 issues in #480

For local Kubernetes installation with Minikube, see Install Minikube and Drivers.

Install Helm on Kubernetes

Follow the directions to install and deploy Helm to the Kubernetes cluster.

View a list of all deployed releases in the local installation.

helm init
helm repo update
helm list
Important
For Helm versions prior to 2.9.1, you may see "connect: connection refused", and will need to fix up the deployment before proceeding.
kubectl delete --namespace kube-system svc tiller-deploy
kubectl delete --namespace kube-system deploy tiller-deploy
kubectl create serviceaccount --namespace kube-system tiller
kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
helm init --service-account tiller --upgrade

Persistence

The ZooKeeper and Kafka cluster deployed with StatefulSets that have a volumeClaimTemplate which provides the persistent volume for each replica. You can define the size of the volumes by changing dataDirSize and dataLogDirSize under cp-zookeeper and size under cp-kafka in values.yaml.

You also could use the cloud provider’s volumes by specifying StorageClass. For example, if you are on AWS your storage class will look like this:

apiVersion: storage.k8s.io/v1beta1
kind: StorageClass
metadata:
  name: ssd
provisioner: kubernetes.io/aws-ebs
parameters:
  type: gp2
Note
To adapt this example to your needs, read the Kubernetes StorageClass documentation.

The StorageClass that was created can be specified in dataLogDirStorageClass and dataDirStorageClass under cp-zookeeper and in storageClass+ under cp-kafka in values.yaml.

To deploy non-persistent Kafka and ZooKeeper clusters, you must change the value of persistence.enabled under cp-kafka and cp-zookeeper in values.yaml

Warning
These type of clusters are suitable for strictly development and testing purposes. The StatefulSets+ are going to use emptyDir volumes, this means that its content strictly related to the pod life cycle and is deleted when the pod goes down.

Install Confluent Platform Charts

Clone the Confluent Helm Chart repo

> helm repo add confluentinc https://confluentinc.github.io/cp-helm-charts/
"confluentinc" has been added to your repositories

> helm repo update
Hang tight while we grab the latest from your chart repositories...
...Skip local chart repository
...Successfully got an update from the "confluentinc" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈ Happy Helming!

Install a 3 node Zookeeper ensemble, a Kafka cluster of 3 brokers, 1 Confluent Schema Registry instance, 1 REST Proxy instance, and 1 Kafka Connect worker, 1 ksqlDB server in your Kubernetes environment.

Note
Naming the chart --name my-confluent-oss is optional, but we assume this is the name in the remainder of the documentation. Otherwise, helm will generate release name.
helm install confluentinc/cp-helm-charts --name my-confluent-oss

If you want to install without the Confluent Schema Registry instance, the REST Proxy instance, and the Kafka Connect worker:

helm install --set cp-schema-registry.enabled=false,cp-kafka-rest.enabled=false,cp-kafka-connect.enabled=false confluentinc/cp-helm-charts

View the installed Helm releases:

helm list
NAME                REVISION    UPDATED                     STATUS      CHART                   NAMESPACE
my-confluent-oss    1           Tue Jun 12 16:56:39 2018    DEPLOYED    cp-helm-charts-0.1.0    default

Verify Installation

Using Helm

Note
This step is optional
Run the embedded test pod in each sub-chart to verify installation
helm test my-confluent-oss

Verify Kafka cluster

Note
This step is optional - to verify that Kafka is working as expected, connect to one of the Kafka pods and produce some messages to a Kafka topic.
List your pods and wait until they are all in Running state.
kubectl get pods
Connect to the container cp-kafka-broker in a Kafka broker pod to produce messages to a Kafka topic.

If you specified a different release name, substitute my-confluent-oss with whatever you named your release.

kubectl exec -c cp-kafka-broker -it my-confluent-oss-cp-kafka-0 -- /bin/bash /usr/bin/kafka-console-producer --broker-list localhost:9092 --topic test

Wait for a > prompt, and enter some text.

m1
m2

Press Ctrl+C to close the producer session.

  1. Consume the messages from the same Kafka topic as above.

kubectl exec -c cp-kafka-broker -it my-confluent-oss-cp-kafka-0 -- /bin/bash  /usr/bin/kafka-console-consumer --bootstrap-server localhost:9092 --topic test --from-beginning

You should see the messages which were published from the console producer. Press Ctrl+C to stop consuming.

Manual Test

Zookeepers
git clone https://github.com/confluentinc/cp-helm-charts.git        #(1)
kubectl apply -f cp-helm-charts/examples/zookeeper-client.yaml      #(2)
...
kubectl exec -it zookeeper-client -- /bin/bash zookeeper-shell <zookeeper service>:<port> ls /brokers/ids       #(3)
kubectl exec -it zookeeper-client -- /bin/bash zookeeper-shell <zookeeper service>:<port> get /brokers/ids/0
kubectl exec -it zookeeper-client -- /bin/bash zookeeper-shell <zookeeper service>:<port> ls /brokers/topics    #(4)
  1. Clone Helm Chars git repository

  2. Deploy a client pod.

  3. Connect to the client pod and use the zookeeper-shell command to explore brokers…​

  4. topics, etc.

Kafka
Validate Kafka installation
kubectl apply -f cp-helm-charts/examples/kafka-client.yaml #(1)
kubectl exec -it kafka-client -- /bin/bash      #(2)
  1. Deploy a Kafka client pod.

  2. Log into the Pod

From within the kafka-client pod, explore with kafka commands:
## Setup
export RELEASE_NAME=<release name>
export ZOOKEEPERS=${RELEASE_NAME}-cp-zookeeper:2181
export KAFKAS=${RELEASE_NAME}-cp-kafka-headless:9092

## Create Topic
kafka-topics --zookeeper $ZOOKEEPERS --create --topic test-rep-one --partitions 6 --replication-factor 1

## Producer
kafka-run-class org.apache.kafka.tools.ProducerPerformance --print-metrics --topic test-rep-one --num-records 6000000 --throughput 100000 --record-size 100 --producer-props bootstrap.servers=$KAFKAS buffer.memory=67108864 batch.size=8196

## Consumer
kafka-consumer-perf-test --broker-list $KAFKAS --messages 6000000 --threads 1 --topic test-rep-one --print-metrics

Run A Streams Application

ksqlDB is the streaming SQL engine that enables real-time data processing against Apache Kafka. Now that you have running in your Kubernetes cluster, you may run a ksqlDB example.

Operations

Scaling Zookeeper

Tip
All scaling operations should be done offline with no producer or consumer connection. The number of nodes should always be odd number.

Install cp-helm-charts with default 3 node ensemble

helm install cp-helm-charts

Scale nodes up to 5, change servers under cp-zookeeper to 5 in values.yaml

helm upgrade <release name> cp-helm-charts

Scale nodes down to 3, change servers under cp-zookeeper to 3 in values.yaml

helm upgrade <release name> cp-helm-charts

Scaling Kafka

Important
Scaling Kafka brokers without doing Partition Reassignment will cause data loss. You must reassign partitions correctly before scaling the Kafka cluster.
Install cp-helm-charts with default 3 brokers kafka cluster
helm install cp-helm-charts

Scale kafka brokers up to 5, change brokers+ under cp-kafka to 5 in values.yaml

helm upgrade <release name> cp-helm-charts

Scale kafka brokers down to 3, change brokers under cp-kafka to 3 in values.yaml

helm upgrade <release name> cp-helm-charts

Monitoring

JMX Metrics are enabled by default for all components, Prometheus JMX Exporter is installed as a sidecar container along with all Pods.

  1. Install Prometheus and Grafana in same Kubernetes cluster using helm

    helm install stable/prometheus
    helm install stable/grafana
  2. Add Prometheus as Data Source in Grafana, url should be something like: http://illmannered-marmot-prometheus-server:9090

  3. Import dashboard under grafana-dashboard into Grafana Kafka Dashboard ZooKeeper Dashboard

Teardown

To remove the pods, list the pods with kubectl get pods and then delete the pods by name.

kubectl get pods
kubectl delete pod <podname>

To delete the Helm release, find the Helm release name with helm list and delete it with helm delete. You may also need to clean up leftover StatefulSets, since helm delete can leave them behind. Finally, clean up all persisted volume claims (pvc) created by this release.

helm list
helm delete <release name>
kubectl delete statefulset <release name>-cp-kafka <release name>-cp-zookeeper
kubectl delete pvc --selector=release=<release name>

Appendix: Create a Local Kubernetes Cluster

There are many deployment options to get set up with a Kubernetes cluster, and this document provides instructions for using Minikube to set up a local Kubernetes cluster. Minikube runs a single-node Kubernetes cluster inside a VM on your laptop.

You may alternatively set up a Kubernetes cluster in the cloud using other providers such as Google Kubernetes Engine (GKE).

Install Minikube and Drivers

Minikube version 0.23.0 or higher is required for docker server moby/moby#31352], which adds support for using ARG in FROM in your Dockerfile.

First follow the basic Minikube installation instructions.

Then install the Minikube drivers. Minikube uses Docker Machine to manage the Kubernetes VM so it benefits from the driver plugin architecture that Docker Machine uses to provide a consistent way to manage various VM providers. Minikube embeds VirtualBox and VMware Fusion drivers so there are no additional steps to use them. However, other drivers require an extra binary to be present in the host PATH.

Important
If you are running on macOS, in particular make sure to install the hyperkit drivers for the native OS X hypervisor:
brew install hyperkit
minikube config set driver hyperkit     #(1)
  1. Use hyperkit drivel by default

Start Minikube

Tip
The following command increases the memory to 6096 MB and uses the hyperkit driver for the native macOS Hypervisor.
  1. Start Minikube. The following command increases the memory to 6096 MB and uses the xhyve driver for the native macOS Hypervisor.

    minikube start --kubernetes-version v1.9.4 --cpus 4 --memory 6096 --vm-driver=xhyve --v=8
  2. Continue to check status of your local Kubernetes cluster until both minikube and cluster are in Running state

    ❯ minikube status
    m01
    host: Running
    kubelet: Running
    apiserver: Running
    kubeconfig: Configured
  3. Work around Minikube issue #1568.

    minikube ssh -- sudo ip link set docker0 promisc on
  4. Set the context.

    eval $(minikube docker-env)
    
    kubectl config set-context minikube.internal --cluster=minikube --user=minikube
    Context "minikube.internal" modified.
    
    kubectl config use-context minikube.internal
    Switched to context "minikube.internal".

Verify Minikube Local Kubernetes Environment

kubectl config current-context
minikube.internal

kubectl cluster-info
Kubernetes master is running at https://192.168.99.106:8443
KubeDNS is running at https://192.168.99.106:8443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy

More Repositories

1

librdkafka

The Apache Kafka C/C++ library
C
7,353
star
2

ksql

The database purpose-built for stream processing applications.
Java
5,533
star
3

confluent-kafka-go

Confluent's Apache Kafka Golang client
Go
4,402
star
4

confluent-kafka-python

Confluent's Kafka Python Client
Python
3,388
star
5

confluent-kafka-dotnet

Confluent's Apache Kafka .NET client
C#
2,560
star
6

kafka-streams-examples

Demo applications and code examples for Apache Kafka's Streams API.
Java
2,169
star
7

kafka-rest

Confluent REST Proxy for Kafka
Java
2,137
star
8

schema-registry

Confluent Schema Registry for Kafka
Java
2,022
star
9

examples

Apache Kafka and Confluent Platform examples and demos
Shell
1,878
star
10

bottledwater-pg

Change data capture from PostgreSQL into Kafka
C
1,521
star
11

demo-scene

👾Scripts and samples to support Confluent Demos and Talks. ⚠️Might be rough around the edges ;-) 👉For automated tutorials and QA'd code, see https://github.com/confluentinc/examples/
Shell
1,356
star
12

cp-docker-images

[DEPRECATED] Docker images for Confluent Platform.
Python
1,143
star
13

kafka-connect-jdbc

Kafka Connect connector for JDBC-compatible databases
Java
953
star
14

cp-all-in-one

docker-compose.yml files for cp-all-in-one , cp-all-in-one-community, cp-all-in-one-cloud, Apache Kafka Confluent Platform
Python
889
star
15

kafka-connect-elasticsearch

Kafka Connect Elasticsearch connector
Java
715
star
16

parallel-consumer

Parallel Apache Kafka client wrapper with per message ACK, client side queueing, a simpler consumer/producer API with key concurrency and extendable non-blocking IO processing.
Java
654
star
17

kafka-connect-hdfs

Kafka Connect HDFS connector
Java
465
star
18

kafka-tutorials

Tutorials and Recipes for Apache Kafka
Java
302
star
19

kafka-images

Confluent Docker images for Apache Kafka
Python
295
star
20

ducktape

System integration and performance tests
Python
294
star
21

kafka-rest-node

Node.js client for the Kafka REST proxy
JavaScript
146
star
22

confluent-platform-security-tools

Security tools for the Confluent Platform.
Shell
146
star
23

kafka-connect-datagen

Connector that generates data for demos
Java
143
star
24

docker-images

DEPRECATED - Dockerfiles for Confluent Stream Data Platform
Shell
116
star
25

rest-utils

Utilities and a small framework for building REST services with Jersey, Jackson, and Jetty.
Java
111
star
26

cli

CLI for Confluent Cloud and Confluent Platform
Go
103
star
27

openmessaging-benchmark

Java
89
star
28

camus

Mirror of Linkedin's Camus
Java
88
star
29

common

Common utilities library containing metrics, config and utils
Java
85
star
30

kafka-workshop

JavaScript
75
star
31

training-developer-src

Source Code accompanying the Confluent Kafka for Developers course
Java
70
star
32

ccloud-tools

Running Tools from Confluent Platform along with your Confluent Cloud™ Cluster
HCL
67
star
33

bincover

Easily measure code coverage of Golang binaries
Go
62
star
34

libserdes

Avro Serialization/Deserialization C/C++ library with Confluent schema-registry support
C
62
star
35

kafka-connect-blog

Demo for Kafka Connect with JDBC and HDFS Connectors
Shell
59
star
36

confluent-cli

Confluent Platform CLI
Shell
58
star
37

ksqldb-graphql

Node.js GraphQL integration for ksqlDB
TypeScript
56
star
38

terraform-provider-confluentcloud

Confluent Cloud Terraform Provider is deprecated in favor of Confluent Terraform Provider
Go
52
star
39

confluent-sigma

JavaScript
50
star
40

jmx-monitoring-stacks

📊 Monitoring examples for Confluent Cloud and Confluent Platform
C#
44
star
41

qcon-microservices

Example online orders app composed of event-driven microservices. Built for QCon workshop.
Java
38
star
42

securing-kafka-blog

Secure Kafka cluster (in a VM) for development and testing
Puppet
38
star
43

training-administration-src

Contains docker-compose file needed for Apache Kafka Administration by Confluent training
HTML
36
star
44

mox

A hybrid mock and proxy server - easily programmable and runs on express
JavaScript
35
star
45

terraform-state-s3

Terraform module to create the S3/DynamoDB backend to store the Terraform state+lock
HCL
34
star
46

common-docker

Confluent Commons with support for building and testing Docker images.
Java
34
star
47

ksql-recipes-try-it-at-home

Files needed to try out KSQL Recipes for yourself
Shell
34
star
48

cp-demo

Confluent Platform Demo including Apache Kafka, ksqlDB, Control Center, Schema Registry, Security, Schema Linking, and Cluster Linking
Shell
31
star
49

confluent-kubernetes-examples

Example scenario workflows for Confluent for Kubernetes
Shell
31
star
50

training-ksql-and-streams-src

Sample solutions for the exercises of the course KSQL & Kafka Streams
Java
30
star
51

schema-registry-images

Docker Images for Schema Registry
Python
29
star
52

confluent-docker-utils

Common Python utils for testing Confluent's Docker images
Python
28
star
53

cp-ansible

Ansible playbooks for the Confluent Platform
Jinja
28
star
54

ksql-images

KSQL platform docker images
Shell
27
star
55

proto-go-setter

Go
23
star
56

coding-in-motion

Source code for the "Coding in Motion" series.
Nix
23
star
57

online-inferencing-blog-application

Source code and application accompanying the online inferencing blog
Java
21
star
58

stream-me-up-scotty

A wide range of Digital Assets from Confluent's Solution Engineering team for Confluent Cloud
21
star
59

terraform-provider-confluent

Terraform Provider for Confluent
Go
21
star
60

training-fundamentals-src

Source code accompanying the course "Apache Kafka Technical Essentials"
Shell
19
star
61

infoq-kafka-ksql

Code samples to go with InfoQ article
Shell
17
star
62

kafka-rest-images

Docker Images for Kafka REST
Python
17
star
63

flink-cookbook

Java
17
star
64

confluent-kafka-javascript

Confluent's Apache Kafka JavaScript client
JavaScript
17
star
65

kafka-mqtt-images

Confluent Docker images for Kafka MQTT
Shell
16
star
66

demo-realtime-data-warehousing

Streaming data pipelines for real-time data warehousing. Includes fully managed connectors (PostgreSQL CDC, Snowflake).
HCL
14
star
67

training-cao-src

Source code accompanying the course "Monitoring, Troubleshooting and Tuning"
Java
13
star
68

event-streaming-patterns

A collection of Event Streaming Patterns, including problem statements, solutions, and implementation examples.
HTML
13
star
69

ccloud-connectivity

Setup and testing connectivity to Confluent Cloud
Shell
13
star
70

learn-building-flink-applications-in-java-exercises

Java
13
star
71

ksqldb-recipes

Makefile
11
star
72

ksql-workshop

KSQL Workshop
11
star
73

control-center-images

Docker images for enterprise control center images
Python
11
star
74

kafka-connect-http-demo

A demo target for running the Confluent HTTP sink connector
Java
11
star
75

castle

Castle is a test harness for Apache Kafka, Trogdor, and related projects.
Java
11
star
76

kafkacat-images

Docker Images for Kafkacat
10
star
77

demo-stream-designer

Current 2022 Confluent Keynote Demo covering Stream Designer, Stream Catalog, and Stream Sharing.
Python
10
star
78

confluent-kafka-go-dev

[EXPERIMENTAL] Development / WIP / exploratory / test fork of confluent-kafka-go
Go
10
star
79

demo-change-data-capture

This demo shows how to capture data changes from relational databases (Oracle and PostgreSQL) and stream them to Confluent Cloud, use ksqlDB for real-time stream processing, send enriched data to cloud data warehouses (Snowflake and Amazon Redshift).
HCL
10
star
80

confluent-hybrid-cloud-workshop

Confluent Hybrid Cloud Workshop
HCL
10
star
81

commercial-workshops

Confluent Commercial SE Team's Demo and Workshop Repository
Python
9
star
82

learn-kafka-courses

Learn the basics of Apache Kafka® from leaders in the Kafka community with these video courses covering the Kafka ecosystem and hands-on exercises.
Shell
9
star
83

hackathons

Contains skeleton projects for hackathons.
Python
8
star
84

ksql-elasticsearch-demo

TSQL
8
star
85

learn-practical-event-modeling

Kotlin
8
star
86

strata-tutorials

Content for Spring 2016 Strata tutorials
Java
7
star
87

learn-apache-kafka-for-dotnet-developers-exercises

C#
7
star
88

confluent-oauth-extensions

Java
6
star
89

kafka-replicator-images

Docker images for Kafka Connect
Shell
6
star
90

etl

Code for ETL data pipelines
Python
6
star
91

operator-earlyaccess

Confluent Operator Early Access docs
6
star
92

schema-registry-workshop

JavaScript
6
star
93

support-metrics-common

Common utilities for metrics collection of proactive support
Java
6
star
94

confluent-kafka-go-example

Example application using the confluent-kafka-go client
Go
5
star
95

streaming-ops

Simulated production environment running Kubernetes targeting Apache Kafka and Confluent components on Confluent Cloud. Managed by declarative infrastructure and GitOps.
Shell
5
star
96

learn-kafka-connect

Shell
4
star
97

support-metrics-client

The client application that powers metrics collection for pro-active support
Java
4
star
98

avro-cpp-packaging

Avro C++ library packaging
C++
4
star
99

aws-confluent

Public repository for Confluent on AWS related material.
4
star
100

qcon-ai-workshop

Exercises for QCon Workshop
JavaScript
4
star