Skip to content

feat: upgrade to confluent 5.5.0 #67

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

Merged
merged 1 commit into from
Apr 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ This replicates as well as possible real deployment configurations, where you ha
## Stack version

- Zookeeper version: 3.4.9
- Kafka version: 2.4.0 (Confluent 5.4.1)
- Kafka Schema Registry: Confluent 5.4.1
- Kafka version: 2.5.0 (Confluent 5.5.0)
- Kafka Schema Registry: Confluent 5.5.0
- Kafka Schema Registry UI: 0.9.4
- Kafka Rest Proxy: Confluent 5.4.1
- Kafka Rest Proxy: Confluent 5.5.0
- Kafka Topics UI: 0.9.4
- Kafka Connect: Confluent 5.4.1
- Kafka Connect: Confluent 5.5.0
- Kafka Connect UI: 0.9.4
- KSQL Server: Confluent 5.4.1
- ksqlDB Server: Confluent 5.5.0
- Zoonavigator: 0.8.0


Expand Down Expand Up @@ -152,7 +152,7 @@ A: yes. Say you want to change `zoo1` port to `12181` (only relevant lines are s
A: yes. Say you want to change `kafka1` port to `12345` (only relevant lines are shown). Note only `LISTENER_DOCKER_EXTERNAL` changes:
```
kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "12345:12345"
Expand Down
16 changes: 8 additions & 8 deletions full-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "9092:9092"
Expand All @@ -35,7 +35,7 @@ services:
- zoo1

kafka-schema-registry:
image: confluentinc/cp-schema-registry:5.4.1
image: confluentinc/cp-schema-registry:5.5.0
hostname: kafka-schema-registry
ports:
- "8081:8081"
Expand All @@ -59,7 +59,7 @@ services:
- kafka-schema-registry

kafka-rest-proxy:
image: confluentinc/cp-kafka-rest:5.4.1
image: confluentinc/cp-kafka-rest:5.5.0
hostname: kafka-rest-proxy
ports:
- "8082:8082"
Expand Down Expand Up @@ -89,7 +89,7 @@ services:
- kafka-rest-proxy

kafka-connect:
image: confluentinc/cp-kafka-connect:5.4.1
image: confluentinc/cp-kafka-connect:5.5.0
hostname: kafka-connect
ports:
- "8083:8083"
Expand Down Expand Up @@ -132,15 +132,15 @@ services:
depends_on:
- kafka-connect

ksql-server:
image: confluentinc/cp-ksql-server:5.4.1
hostname: ksql-server
ksqldb-server:
image: confluentinc/cp-ksqldb-server:5.5.0
hostname: ksqldb-server
ports:
- "8088:8088"
environment:
KSQL_BOOTSTRAP_SERVERS: PLAINTEXT://kafka1:19092
KSQL_LISTENERS: http://0.0.0.0:8088/
KSQL_KSQL_SERVICE_ID: ksql-server_
KSQL_KSQL_SERVICE_ID: ksqldb-server_
depends_on:
- zoo1
- kafka1
Expand Down
6 changes: 3 additions & 3 deletions zk-multiple-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "9092:9092"
Expand All @@ -61,7 +61,7 @@ services:
- zoo3

kafka2:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka2
ports:
- "9093:9093"
Expand All @@ -80,7 +80,7 @@ services:
- zoo3

kafka3:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka3
ports:
- "9094:9094"
Expand Down
2 changes: 1 addition & 1 deletion zk-multiple-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "9092:9092"
Expand Down
6 changes: 3 additions & 3 deletions zk-single-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- ./zk-single-kafka-multiple/zoo1/datalog:/datalog

kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "9092:9092"
Expand All @@ -32,7 +32,7 @@ services:
- zoo1

kafka2:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka2
ports:
- "9093:9093"
Expand All @@ -50,7 +50,7 @@ services:


kafka3:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka3
ports:
- "9094:9094"
Expand Down
2 changes: 1 addition & 1 deletion zk-single-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- ./zk-single-kafka-single/zoo1/datalog:/datalog

kafka1:
image: confluentinc/cp-kafka:5.4.1
image: confluentinc/cp-kafka:5.5.0
hostname: kafka1
ports:
- "9092:9092"
Expand Down