mirror of https://github.com/apache/kafka.git
KAFKA-18237: Upgrade system tests from using 3.7.1 to 3.7.2 (#18180)
Reviewers: Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
parent
883cfe801e
commit
3f26b57661
|
@ -105,7 +105,7 @@ versions += [
|
|||
kafka_34: "3.4.1",
|
||||
kafka_35: "3.5.2",
|
||||
kafka_36: "3.6.2",
|
||||
kafka_37: "3.7.1",
|
||||
kafka_37: "3.7.2",
|
||||
kafka_38: "3.8.1",
|
||||
kafka_39: "3.9.0",
|
||||
log4j2: "2.24.1",
|
||||
|
|
|
@ -99,7 +99,7 @@ RUN mkdir -p "/opt/kafka-3.3.2" && chmod a+rw /opt/kafka-3.3.2 && curl -s "$KAFK
|
|||
RUN 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"
|
||||
RUN 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"
|
||||
RUN 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"
|
||||
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"
|
||||
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"
|
||||
RUN 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"
|
||||
RUN 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"
|
||||
|
||||
|
@ -124,7 +124,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.3.2-test.jar" -o /opt/kafka-3.3.2/lib
|
|||
RUN 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
|
||||
RUN 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
|
||||
RUN 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
|
||||
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
|
||||
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
|
||||
RUN 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
|
||||
RUN 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
|
||||
|
||||
|
|
|
@ -218,7 +218,8 @@ LATEST_3_6 = V_3_6_2
|
|||
# 3.7.x version
|
||||
V_3_7_0 = KafkaVersion("3.7.0")
|
||||
V_3_7_1 = KafkaVersion("3.7.1")
|
||||
LATEST_3_7 = V_3_7_1
|
||||
V_3_7_2 = KafkaVersion("3.7.2")
|
||||
LATEST_3_7 = V_3_7_2
|
||||
|
||||
# 3.8.x version
|
||||
V_3_8_0 = KafkaVersion("3.8.0")
|
||||
|
|
|
@ -154,8 +154,8 @@ get_kafka 3.5.2 2.12
|
|||
chmod a+rw /opt/kafka-3.5.2
|
||||
get_kafka 3.6.2 2.12
|
||||
chmod a+rw /opt/kafka-3.6.2
|
||||
get_kafka 3.7.1 2.12
|
||||
chmod a+rw /opt/kafka-3.7.1
|
||||
get_kafka 3.7.2 2.12
|
||||
chmod a+rw /opt/kafka-3.7.2
|
||||
get_kafka 3.8.1 2.12
|
||||
chmod a+rw /opt/kafka-3.8.1
|
||||
get_kafka 3.9.0 2.12
|
||||
|
|
Loading…
Reference in New Issue