File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ versions += [
103103 kafka_37 : " 3.7.2" ,
104104 kafka_38 : " 3.8.1" ,
105105 kafka_39 : " 3.9.1" ,
106- kafka_40 : " 4.0.0 " ,
106+ kafka_40 : " 4.0.1 " ,
107107 kafka_41 : " 4.1.1" ,
108108 log4j2 : " 2.25.1" ,
109109 // When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ RUN mkdir -p "/opt/kafka-3.6.2" && chmod a+rw /opt/kafka-3.6.2 && curl -s "$KAFK
9494RUN mkdir -p "/opt/kafka-3.7.2" && chmod a+rw /opt/kafka-3.7.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.2"
9595RUN mkdir -p "/opt/kafka-3.8.1" && chmod a+rw /opt/kafka-3.8.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.8.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.8.1"
9696RUN mkdir -p "/opt/kafka-3.9.1" && chmod a+rw /opt/kafka-3.9.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.9.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.1"
97- RUN mkdir -p "/opt/kafka-4.0.0 " && chmod a+rw /opt/kafka-4.0.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.0 .tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.0 "
97+ RUN mkdir -p "/opt/kafka-4.0.1 " && chmod a+rw /opt/kafka-4.0.1 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.1 .tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.1 "
9898RUN mkdir -p "/opt/kafka-4.1.1" && chmod a+rw /opt/kafka-4.1.1 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.1.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.1.1"
9999
100100
@@ -117,7 +117,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.2-test.jar" -o /opt/kafka-3.6.2/lib
117117RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.2-test.jar" -o /opt/kafka-3.7.2/libs/kafka-streams-3.7.2-test.jar
118118RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.8.1-test.jar" -o /opt/kafka-3.8.1/libs/kafka-streams-3.8.1-test.jar
119119RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.1-test.jar" -o /opt/kafka-3.9.1/libs/kafka-streams-3.9.1-test.jar
120- RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.0 -test.jar" -o /opt/kafka-4.0.0 /libs/kafka-streams-4.0.0 -test.jar
120+ RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.1 -test.jar" -o /opt/kafka-4.0.1 /libs/kafka-streams-4.0.1 -test.jar
121121RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.1.1-test.jar" -o /opt/kafka-4.1.1/libs/kafka-streams-4.1.1-test.jar
122122
123123# To ensure the Kafka cluster starts successfully under JDK 17, we need to update the Zookeeper
Original file line number Diff line number Diff line change @@ -239,7 +239,8 @@ def get_version(node=None):
239239
240240# 4.0.x version
241241V_4_0_0 = KafkaVersion ("4.0.0" )
242- LATEST_4_0 = V_4_0_0
242+ V_4_0_1 = KafkaVersion ("4.0.1" )
243+ LATEST_4_0 = V_4_0_1
243244
244245# 4.1.x version
245246V_4_1_0 = KafkaVersion ("4.1.0" )
Original file line number Diff line number Diff line change @@ -150,8 +150,8 @@ get_kafka 3.8.1 2.12
150150chmod a+rw /opt/kafka-3.8.1
151151get_kafka 3.9.1 2.12
152152chmod a+rw /opt/kafka-3.9.1
153- get_kafka 4.0.0 2.13
154- chmod a+rw /opt/kafka-4.0.0
153+ get_kafka 4.0.1 2.13
154+ chmod a+rw /opt/kafka-4.0.1
155155get_kafka 4.1.1 2.13
156156chmod a+rw /opt/kafka-4.1.1
157157
You can’t perform that action at this time.
0 commit comments