Home > Mobile >  Does Apache not give official Docker image for Apache-Kafka? [closed]
Does Apache not give official Docker image for Apache-Kafka? [closed]

Time:09-17

Is there no official DockerHub image for Apache-Kafka? I am planning to deploy OSS Apache-Kakfa on native Kubernetes.

After looking on the Internet i could see these options to install and manage Kafka on k8s: https://strimzi.io/ https://github.com/wurstmeister/kafka-docker

Please suggest.

CodePudding user response:

I think you can count on Confluent image as an 'official'. In fact, we are using it in production. There were a similar discussion about official docker image. So, actually, both Kafka wurstmeister and Kafka Confluent are in use. You can pick between the two. I will not argue what is the best here, just note: both are capable to be shipped at prod.

CodePudding user response:

These are good options:

Confluent (community licenced)

Wurstmeister

Bitnami

With a Kubernetes deployment, I would highly recommend looking at the Helm chart for Bitnami Kafka. I am using it in my platform and it is very useful for simplified networking, scaling and configuration. This uses the Bitnami Kafka Docker image listed above.

Bitnami Kafka Helm

  • Related