Sign inSign up

hlebalbau/kafka-manager

By hlebalbau

•Updated about 6 years ago

CMAK (previous known as Kafka Manager) As Docker Image (ARCHIVE, moved, read description)

Image
92

1M+

hlebalbau/kafka-manager repository overview

⁠kafka-manager-docker

Docker Stars Docker pulls Docker Automated build

WARNING: I transfered repository ownership, checkout https://github.com/eshepelyuk/cmak-docker/⁠

⁠Tags

Kafka Manager images come in two flavors:

  • stable: Build from latest Kafka Manager repository release.
  • latest: Periodically assembled master builds. Better not to use in production.

⁠How to use this image

⁠Using docker
docker run -d \
     -p 9000:9000  \
     -e ZK_HOSTS="localhost:2181" \
     hlebalbau/kafka-manager:stable
⁠Using docker-compose
version: '3.6'
services:
  kafka_manager:
    image: hlebalbau/kafka-manager:stable
    ports:
      - "9000:9000"
    environment:
      ZK_HOSTS: "zoo:2181"
      APPLICATION_SECRET: "random-secret"
⁠In Kubernetes with Kubernetes operator

It is possible to use dedicated CMAK operator for installing and configuring CMAK in Kubernetes. The operator uses this docker image as one of its component.

Installation instructions could be found at CMAK operator homepage⁠.

⁠Secure with basic authentication

Add the following env variables if you want to protect the web UI with basic authentication:

KAFKA_MANAGER_AUTH_ENABLED: "true"
KAFKA_MANAGER_USERNAME: username
KAFKA_MANAGER_PASSWORD: password

⁠Issues

If you have any problems with or questions about this image, please contact us through a GitHub issue⁠.

Tag summary

Content type

Image

Digest

Size

164.2 MB

Last updated

about 6 years ago

docker pull hlebalbau/kafka-manager