mirror of https://github.com/apache/kafka.git
MINOR: Bump latest 2.6 version to 2.6.2 (#10582)
Bump the version for system tests to 2.6.2
This commit is contained in:
parent
87b24025ce
commit
3bfc9fe486
|
@ -94,7 +94,7 @@ versions += [
|
|||
kafka_23: "2.3.1",
|
||||
kafka_24: "2.4.1",
|
||||
kafka_25: "2.5.1",
|
||||
kafka_26: "2.6.1",
|
||||
kafka_26: "2.6.2",
|
||||
kafka_27: "2.7.0",
|
||||
lz4: "1.7.1",
|
||||
mavenArtifact: "3.6.3",
|
||||
|
|
|
@ -60,7 +60,7 @@ RUN mkdir -p "/opt/kafka-2.2.2" && chmod a+rw /opt/kafka-2.2.2 && curl -s "$KAFK
|
|||
RUN mkdir -p "/opt/kafka-2.3.1" && chmod a+rw /opt/kafka-2.3.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.3.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.3.1"
|
||||
RUN mkdir -p "/opt/kafka-2.4.1" && chmod a+rw /opt/kafka-2.4.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.4.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.4.1"
|
||||
RUN mkdir -p "/opt/kafka-2.5.1" && chmod a+rw /opt/kafka-2.5.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.5.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.5.1"
|
||||
RUN mkdir -p "/opt/kafka-2.6.1" && chmod a+rw /opt/kafka-2.6.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.6.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.6.1"
|
||||
RUN mkdir -p "/opt/kafka-2.6.2" && chmod a+rw /opt/kafka-2.6.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.6.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.6.2"
|
||||
RUN mkdir -p "/opt/kafka-2.7.0" && chmod a+rw /opt/kafka-2.7.0 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.7.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.7.0"
|
||||
|
||||
# Streams test dependencies
|
||||
|
@ -76,7 +76,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.2.2-test.jar" -o /opt/kafka-2.2.2/lib
|
|||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.3.1-test.jar" -o /opt/kafka-2.3.1/libs/kafka-streams-2.3.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.4.1-test.jar" -o /opt/kafka-2.4.1/libs/kafka-streams-2.4.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.5.1-test.jar" -o /opt/kafka-2.5.1/libs/kafka-streams-2.5.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.6.1-test.jar" -o /opt/kafka-2.6.1/libs/kafka-streams-2.6.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.6.2-test.jar" -o /opt/kafka-2.6.2/libs/kafka-streams-2.6.2-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.7.0-test.jar" -o /opt/kafka-2.7.0/libs/kafka-streams-2.7.0-test.jar
|
||||
|
||||
# The version of Kibosh to use for testing.
|
||||
|
|
|
@ -199,7 +199,8 @@ LATEST_2_5 = V_2_5_1
|
|||
# 2.6.x versions
|
||||
V_2_6_0 = KafkaVersion("2.6.0")
|
||||
V_2_6_1 = KafkaVersion("2.6.1")
|
||||
LATEST_2_6 = V_2_6_1
|
||||
V_2_6_2 = KafkaVersion("2.6.2")
|
||||
LATEST_2_6 = V_2_6_2
|
||||
|
||||
# 2.7.x versions
|
||||
V_2_7_0 = KafkaVersion("2.7.0")
|
||||
|
|
|
@ -142,8 +142,8 @@ get_kafka 2.4.1 2.12
|
|||
chmod a+rw /opt/kafka-2.4.1
|
||||
get_kafka 2.5.1 2.12
|
||||
chmod a+rw /opt/kafka-2.5.1
|
||||
get_kafka 2.6.1 2.12
|
||||
chmod a+rw /opt/kafka-2.6.1
|
||||
get_kafka 2.6.2 2.12
|
||||
chmod a+rw /opt/kafka-2.6.2
|
||||
get_kafka 2.7.0 2.12
|
||||
chmod a+rw /opt/kafka-2.7.0
|
||||
|
||||
|
|
Loading…
Reference in New Issue