Skip to content

Commit

Permalink
use kafka:2.12-2.3.1 and zookeeper:3.5.6 in the sandbox example
Browse files Browse the repository at this point in the history
Signed-off-by: amre_shakimov <[email protected]>
  • Loading branch information
amre-abb committed Jan 26, 2020
1 parent 4b50894 commit 5d8b13e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/kafka.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Terminal 1

.. code-block:: console
$ docker run --rm -it --network envoymesh wurstmeister/kafka:2.11-2.0.0 /opt/kafka/bin/kafka-console-producer.sh --broker-list envoy:19092 --topic test_topic
$ docker run --rm -it --network envoymesh wurstmeister/kafka:2.12-2.3.1 /opt/kafka/bin/kafka-console-producer.sh --broker-list envoy:19092 --topic test_topic
> test_event_1
> test_event_2
Expand All @@ -60,7 +60,7 @@ Terminal 2

.. code-block:: console
$ docker run --rm -it --network envoymesh wurstmeister/kafka:2.11-2.0.0 /opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server envoy:19092 --topic test_topic --from-beginning
$ docker run --rm -it --network envoymesh wurstmeister/kafka:2.12-2.3.1 /opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server envoy:19092 --topic test_topic --from-beginning
test_event_1
test_event_2
Expand Down
4 changes: 2 additions & 2 deletions examples/kafka/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- "8001:8001"

zookeeper:
image: wurstmeister/zookeeper:3.4.6
image: zookeeper:3.5.6
networks:
envoymesh:
aliases:
Expand All @@ -29,7 +29,7 @@ services:
- "2181"

kafka:
image: wurstmeister/kafka:2.11-2.0.0
image: wurstmeister/kafka:2.12-2.3.1
depends_on:
- zookeeper
networks:
Expand Down

0 comments on commit 5d8b13e

Please sign in to comment.