Skip to content

Commit b659563

Browse files
committed
updated to confluent images v 3.2.0
1 parent 54dcf5e commit b659563

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This replicates as well as possible real deployment configurations, where you ha
55
## Stack version
66

77
- Zookeeper version: 3.4.9
8-
- Kafka version: 0.10.1.1 (Confluent 3.1.2)
9-
- Kafka Schema Registry: Confluent 3.1.2
8+
- Kafka version: 0.10.1.1 (Confluent 3.2.0)
9+
- Kafka Schema Registry: Confluent 3.2.0
1010
- Kafka Schema Registry UI: 0.9.0
11-
- Kafka Rest Proxy: Confluent 3.1.2
11+
- Kafka Rest Proxy: Confluent 3.2.0
1212
- Kafka Topics UI: 0.8.2
13-
- Kafka Connect: Confluent 3.1.2
13+
- Kafka Connect: Confluent 3.2.0
1414
- Kafka Connect UI: 0.8.2
1515

1616
# Requirements
@@ -131,4 +131,4 @@ Q: Kafka's log is too verbose, how can I reduce it?
131131
A: Add the following line to your docker-compose environment variables: `KAFKA_LOG4J_LOGGERS: "kafka.controller=INFO,kafka.producer.async.DefaultEventHandler=INFO,state.change.logger=INFO"`. Full logging control can be accessed here: https://github.com/confluentinc/cp-docker-images/blob/master/debian/kafka/include/etc/confluent/docker/log4j.properties.template
132132

133133
Q: How do I delete data to start fresh?
134-
A: Your data is persisted from within the docker compose folder, so if you want for example to reset the data in the full-stack docker compose, first do a `docker-compose -f full-stack.yml down`, then remove the directory `full-stack`, for example by doing `rm -r -f full-stack`.
134+
A: Your data is persisted from within the docker compose folder, so if you want for example to reset the data in the full-stack docker compose, first do a `docker-compose -f full-stack.yml down`, then remove the directory `full-stack`, for example by doing `rm -r -f full-stack`.

full-stack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717

1818

1919
kafka1:
20-
image: confluentinc/cp-kafka:3.1.2
20+
image: confluentinc/cp-kafka:3.2.0
2121
hostname: kafka1
2222
ports:
2323
- "9092:9092"
@@ -57,7 +57,7 @@ services:
5757
- kafka-schema-registry
5858

5959
kafka-rest-proxy:
60-
image: confluentinc/cp-kafka-rest:3.1.2
60+
image: confluentinc/cp-kafka-rest:3.2.0
6161
hostname: kafka-rest-proxy
6262
ports:
6363
- "8082:8082"
@@ -86,7 +86,7 @@ services:
8686
- kafka-rest-proxy
8787

8888
kafka-connect:
89-
image: confluentinc/cp-kafka-connect:3.1.2
89+
image: confluentinc/cp-kafka-connect:3.2.0
9090
hostname: kafka-connect
9191
ports:
9292
- "8083:8083"

zk-multiple-kafka-multiple.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242

4343

4444
kafka1:
45-
image: confluentinc/cp-kafka:3.1.2
45+
image: confluentinc/cp-kafka:3.2.0
4646
hostname: kafka1
4747
ports:
4848
- "9092:9092"
@@ -60,7 +60,7 @@ services:
6060
- zoo3
6161

6262
kafka2:
63-
image: confluentinc/cp-kafka:3.1.2
63+
image: confluentinc/cp-kafka:3.2.0
6464
hostname: kafka2
6565
ports:
6666
- "9093:9093"
@@ -78,7 +78,7 @@ services:
7878
- zoo3
7979

8080
kafka3:
81-
image: confluentinc/cp-kafka:3.1.2
81+
image: confluentinc/cp-kafka:3.2.0
8282
hostname: kafka3
8383
ports:
8484
- "9094:9094"

zk-multiple-kafka-single.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242

4343

4444
kafka1:
45-
image: confluentinc/cp-kafka:3.1.2
45+
image: confluentinc/cp-kafka:3.2.0
4646
hostname: kafka1
4747
ports:
4848
- "9092:9092"

zk-single-kafka-multiple.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- ./zk-single-kafka-multiple/zoo1/datalog:/datalog
1616

1717
kafka1:
18-
image: confluentinc/cp-kafka:3.1.2
18+
image: confluentinc/cp-kafka:3.2.0
1919
hostname: kafka1
2020
ports:
2121
- "9092:9092"
@@ -31,7 +31,7 @@ services:
3131
- zoo1
3232

3333
kafka2:
34-
image: confluentinc/cp-kafka:3.1.2
34+
image: confluentinc/cp-kafka:3.2.0
3535
hostname: kafka2
3636
ports:
3737
- "9093:9093"
@@ -48,7 +48,7 @@ services:
4848

4949

5050
kafka3:
51-
image: confluentinc/cp-kafka:3.1.2
51+
image: confluentinc/cp-kafka:3.2.0
5252
hostname: kafka3
5353
ports:
5454
- "9094:9094"

zk-single-kafka-single.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- ./zk-single-kafka-single/zoo1/datalog:/datalog
1616

1717
kafka1:
18-
image: confluentinc/cp-kafka:3.1.2
18+
image: confluentinc/cp-kafka:3.2.0
1919
hostname: kafka1
2020
ports:
2121
- "9092:9092"

0 commit comments

Comments
 (0)