Skip to content

Commit

Permalink
Update confluent platform to version 7.1.1 (latest) (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlescd authored May 9, 2022
1 parent 2ae0f9a commit 8690a77
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 38 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ This replicates as well as possible real deployment configurations, where you ha

## Stack version

- Zookeeper version: 3.6.3 (Confluent 7.0.1)
- Kafka version: 3.0.x (Confluent 7.0.1)
- Kafka Schema Registry: Confluent 7.0.1
- Kafka Rest Proxy: Confluent 7.0.1
- Kafka Connect: Confluent 7.0.1
- ksqlDB Server: Confluent 7.0.1
- Zookeeper version: 3.6.3 (Confluent 7.1.1)
- Kafka version: 3.1.0 (Confluent 7.1.1)
- Kafka Schema Registry: Confluent 7.1.1
- Kafka Rest Proxy: Confluent 7.1.1
- Kafka Connect: Confluent 7.1.1
- ksqlDB Server: Confluent 7.1.1
- Zoonavigator: 1.1.1

For a UI tool to access your local Kafka cluster, use the free version of [Conduktor](https://www.conduktor.io/download)
Expand Down Expand Up @@ -155,7 +155,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:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
ports:
- "12345:12345"
Expand All @@ -169,7 +169,7 @@ A: yes. This is for testing only!!! Reduce the KAFKA_LOG_SEGMENT_BYTES to 16MB a

```
kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
...
environment:
...
Expand All @@ -185,7 +185,7 @@ For example, if the IP of your machine is `50.10.2.3`, follow the sample mapping

```
kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
...
environment:
...
Expand Down
12 changes: 6 additions & 6 deletions full-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888

kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand All @@ -37,7 +37,7 @@ services:
- zoo1

kafka-schema-registry:
image: confluentinc/cp-schema-registry:7.0.1
image: confluentinc/cp-schema-registry:7.1.1
hostname: kafka-schema-registry
container_name: kafka-schema-registry
ports:
Expand All @@ -52,7 +52,7 @@ services:


kafka-rest-proxy:
image: confluentinc/cp-kafka-rest:7.0.1
image: confluentinc/cp-kafka-rest:7.1.1
hostname: kafka-rest-proxy
container_name: kafka-rest-proxy
ports:
Expand All @@ -70,7 +70,7 @@ services:


kafka-connect:
image: confluentinc/cp-kafka-connect:7.0.1
image: confluentinc/cp-kafka-connect:7.1.1
hostname: kafka-connect
container_name: kafka-connect
ports:
Expand Down Expand Up @@ -112,7 +112,7 @@ services:
ksqldb-server:
image: confluentinc/cp-ksqldb-server:7.0.1
image: confluentinc/cp-ksqldb-server:7.1.1
hostname: ksqldb-server
container_name: ksqldb-server
ports:
Expand Down
14 changes: 7 additions & 7 deletions zk-multiple-kafka-multiple-schema-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo2:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo2
container_name: zoo2
ports:
Expand All @@ -24,7 +24,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo3:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo3
container_name: zoo3
ports:
Expand All @@ -36,7 +36,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand All @@ -56,7 +56,7 @@ services:
- zoo3

kafka2:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka2
container_name: kafka2
ports:
Expand All @@ -76,7 +76,7 @@ services:
- zoo3

kafka3:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka3
container_name: kafka3
ports:
Expand All @@ -96,7 +96,7 @@ services:
- zoo3

kafka-schema-registry:
image: confluentinc/cp-schema-registry:7.0.1
image: confluentinc/cp-schema-registry:7.1.1
hostname: kafka-schema-registry
container_name: kafka-schema-registry
depends_on:
Expand Down
12 changes: 6 additions & 6 deletions zk-multiple-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo2:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo2
container_name: zoo2
ports:
Expand All @@ -24,7 +24,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo3:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo3
container_name: zoo3
ports:
Expand All @@ -37,7 +37,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand All @@ -57,7 +57,7 @@ services:
- zoo3

kafka2:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka2
container_name: kafka2
ports:
Expand All @@ -77,7 +77,7 @@ services:
- zoo3

kafka3:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka3
container_name: kafka3
ports:
Expand Down
8 changes: 4 additions & 4 deletions zk-multiple-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo2:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo2
container_name: zoo2
ports:
Expand All @@ -24,7 +24,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888;zoo2:2888:3888;zoo3:2888:3888

zoo3:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo3
container_name: zoo3
ports:
Expand All @@ -36,7 +36,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand Down
8 changes: 4 additions & 4 deletions zk-single-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -14,7 +14,7 @@ services:


kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand All @@ -32,7 +32,7 @@ services:
- zoo1

kafka2:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka2
container_name: kafka2
ports:
Expand All @@ -51,7 +51,7 @@ services:


kafka3:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka3
container_name: kafka3
ports:
Expand Down
4 changes: 2 additions & 2 deletions zk-single-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
zoo1:
image: confluentinc/cp-zookeeper:7.0.1
image: confluentinc/cp-zookeeper:7.1.1
hostname: zoo1
container_name: zoo1
ports:
Expand All @@ -13,7 +13,7 @@ services:
ZOOKEEPER_SERVERS: zoo1:2888:3888

kafka1:
image: confluentinc/cp-kafka:7.0.1
image: confluentinc/cp-kafka:7.1.1
hostname: kafka1
container_name: kafka1
ports:
Expand Down

0 comments on commit 8690a77

Please sign in to comment.