Skip to content

Commit

Permalink
updated confluent images versions to 5.2.4 (provectus#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
RamazanYapparov authored Mar 9, 2021
1 parent 67463df commit bb301fb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions docker/kafka-clusters-only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: '2'
services:

zookeeper0:
image: confluentinc/cp-zookeeper:5.1.0
image: confluentinc/cp-zookeeper:5.2.4
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 2181:2181

kafka0:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
depends_on:
- zookeeper0
environment:
Expand All @@ -28,7 +28,7 @@ services:
- 9997:9997

kafka01:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
depends_on:
- zookeeper0
environment:
Expand All @@ -45,15 +45,15 @@ services:
- 9999:9999

zookeeper1:
image: confluentinc/cp-zookeeper:5.1.0
image: confluentinc/cp-zookeeper:5.2.4
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 2182:2181

kafka1:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
depends_on:
- zookeeper1
environment:
Expand All @@ -70,7 +70,7 @@ services:
- 9998:9998

schemaregistry0:
image: confluentinc/cp-schema-registry:5.1.0
image: confluentinc/cp-schema-registry:5.2.4
depends_on:
- zookeeper0
- kafka0
Expand All @@ -89,7 +89,7 @@ services:
- 8081:8081

kafka-connect0:
image: confluentinc/cp-kafka-connect:5.1.0
image: confluentinc/cp-kafka-connect:5.2.4
ports:
- 8083:8083
depends_on:
Expand All @@ -115,7 +115,7 @@ services:


kafka-init-topics:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
volumes:
- ./message.json:/data/message.json
depends_on:
Expand Down
14 changes: 7 additions & 7 deletions docker/kafka-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ services:
KAFKA_CLUSTERS_1_KAFKACONNECT_0_ADDRESS: http://kafka-connect0:8083

zookeeper0:
image: confluentinc/cp-zookeeper:5.1.0
image: confluentinc/cp-zookeeper:5.2.4
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 2181:2181

kafka0:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
depends_on:
- zookeeper0
ports:
Expand All @@ -56,13 +56,13 @@ services:
KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka0 -Dcom.sun.management.jmxremote.rmi.port=9997

zookeeper1:
image: confluentinc/cp-zookeeper:5.1.0
image: confluentinc/cp-zookeeper:5.2.4
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000

kafka1:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
depends_on:
- zookeeper1
ports:
Expand All @@ -79,7 +79,7 @@ services:
KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka1 -Dcom.sun.management.jmxremote.rmi.port=9998

schemaregistry0:
image: confluentinc/cp-schema-registry:5.1.0
image: confluentinc/cp-schema-registry:5.2.4
ports:
- 8085:8085
depends_on:
Expand All @@ -97,7 +97,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas

kafka-connect0:
image: confluentinc/cp-kafka-connect:5.1.0
image: confluentinc/cp-kafka-connect:5.2.4
ports:
- 8083:8083
depends_on:
Expand All @@ -122,7 +122,7 @@ services:
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components"

kafka-init-topics:
image: confluentinc/cp-kafka:5.1.0
image: confluentinc/cp-kafka:5.2.4
volumes:
- ./message.json:/data/message.json
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion kafka-ui-api/src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kafka:
clusters:
-
name: local
bootstrapServers: localhost:9093
bootstrapServers: localhost:9092
zookeeper: localhost:2181
schemaRegistry: http://localhost:8081
kafkaConnect:
Expand Down

0 comments on commit bb301fb

Please sign in to comment.