Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Host.Kafka] Upgrade docker test container to latest Kafka cluster image #305

Open
zarusz opened this issue Sep 14, 2024 · 0 comments
Open

Comments

@zarusz
Copy link
Owner

zarusz commented Sep 14, 2024

The docker-compose file uses an old Kafka version for our integration tests.
We need to use latest and preferably use the confluent community distro confluentinc/cp-kafka:7.3.10.

Right now is uses the wurstmeister/kafka:2.13-2.8.1

  zookeeper:
    container_name: slim.zookeeper
    image: wurstmeister/zookeeper
    ports:
      - "2181:2181"
    networks:
      - slim

  kafka:
    container_name: slim.kafka
    image: wurstmeister/kafka:2.13-2.8.1
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_HOST_NAME: localhost
      KAFKA_CREATE_TOPICS: "user-test-ping:2:1,user-test-echo:2:1,user-test-echo-resp:2:1"
      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
    depends_on:
      - zookeeper
    networks:
      - slim

Also: https://endoflife.date/apache-kafka

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant