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 @@ -105,7 +105,7 @@ versions += [
105105 kafka_34 : " 3.4.1" ,
106106 kafka_35 : " 3.5.2" ,
107107 kafka_36 : " 3.6.2" ,
108- kafka_37 : " 3.7.1 " ,
108+ kafka_37 : " 3.7.2 " ,
109109 kafka_38 : " 3.8.1" ,
110110 kafka_39 : " 3.9.0" ,
111111 log4j2 : " 2.24.1" ,
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ RUN mkdir -p "/opt/kafka-3.3.2" && chmod a+rw /opt/kafka-3.3.2 && curl -s "$KAFK
9999RUN mkdir -p "/opt/kafka-3.4.1" && chmod a+rw /opt/kafka-3.4.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.4.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.4.1"
100100RUN mkdir -p "/opt/kafka-3.5.2" && chmod a+rw /opt/kafka-3.5.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.5.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.5.2"
101101RUN mkdir -p "/opt/kafka-3.6.2" && chmod a+rw /opt/kafka-3.6.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.6.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.6.2"
102- RUN mkdir -p "/opt/kafka-3.7.1 " && chmod a+rw /opt/kafka-3.7.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.1 .tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.1 "
102+ RUN 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 "
103103RUN 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"
104104RUN mkdir -p "/opt/kafka-3.9.0" && chmod a+rw /opt/kafka-3.9.0 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.9.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.0"
105105
@@ -124,7 +124,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.3.2-test.jar" -o /opt/kafka-3.3.2/lib
124124RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.4.1-test.jar" -o /opt/kafka-3.4.1/libs/kafka-streams-3.4.1-test.jar
125125RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.5.2-test.jar" -o /opt/kafka-3.5.2/libs/kafka-streams-3.5.2-test.jar
126126RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.2-test.jar" -o /opt/kafka-3.6.2/libs/kafka-streams-3.6.2-test.jar
127- RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.1 -test.jar" -o /opt/kafka-3.7.1 /libs/kafka-streams-3.7.1 -test.jar
127+ RUN 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
128128RUN 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
129129RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.0-test.jar" -o /opt/kafka-3.9.0/libs/kafka-streams-3.9.0-test.jar
130130
Original file line number Diff line number Diff line change @@ -218,7 +218,8 @@ def get_version(node=None):
218218# 3.7.x version
219219V_3_7_0 = KafkaVersion ("3.7.0" )
220220V_3_7_1 = KafkaVersion ("3.7.1" )
221- LATEST_3_7 = V_3_7_1
221+ V_3_7_2 = KafkaVersion ("3.7.2" )
222+ LATEST_3_7 = V_3_7_2
222223
223224# 3.8.x version
224225V_3_8_0 = KafkaVersion ("3.8.0" )
Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ get_kafka 3.5.2 2.12
154154chmod a+rw /opt/kafka-3.5.2
155155get_kafka 3.6.2 2.12
156156chmod a+rw /opt/kafka-3.6.2
157- get_kafka 3.7.1 2.12
158- chmod a+rw /opt/kafka-3.7.1
157+ get_kafka 3.7.2 2.12
158+ chmod a+rw /opt/kafka-3.7.2
159159get_kafka 3.8.1 2.12
160160chmod a+rw /opt/kafka-3.8.1
161161get_kafka 3.9.0 2.12
You can’t perform that action at this time.
0 commit comments