mirror of https://github.com/apache/kafka.git
MINOR: Add Kafka 3.8.1 to system tests (#17629)
Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
67e2a0ae6f
commit
5859df9ee0
|
@ -107,7 +107,7 @@ versions += [
|
||||||
kafka_35: "3.5.2",
|
kafka_35: "3.5.2",
|
||||||
kafka_36: "3.6.2",
|
kafka_36: "3.6.2",
|
||||||
kafka_37: "3.7.1",
|
kafka_37: "3.7.1",
|
||||||
kafka_38: "3.8.0",
|
kafka_38: "3.8.1",
|
||||||
// When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid
|
// When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid
|
||||||
lz4: "1.8.0",
|
lz4: "1.8.0",
|
||||||
mavenArtifact: "3.9.6",
|
mavenArtifact: "3.9.6",
|
||||||
|
|
|
@ -102,7 +102,7 @@ RUN mkdir -p "/opt/kafka-3.4.1" && chmod a+rw /opt/kafka-3.4.1 && curl -s "$KAFK
|
||||||
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.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.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.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.8.0" && chmod a+rw /opt/kafka-3.8.0 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.8.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.8.0"
|
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"
|
||||||
|
|
||||||
|
|
||||||
# Streams test dependencies
|
# Streams test dependencies
|
||||||
|
@ -129,7 +129,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.4.1-test.jar" -o /opt/kafka-3.4.1/lib
|
||||||
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.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.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.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.8.0-test.jar" -o /opt/kafka-3.8.0/libs/kafka-streams-3.8.0-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
|
||||||
|
|
||||||
# The version of Kibosh to use for testing.
|
# The version of Kibosh to use for testing.
|
||||||
# If you update this, also update vagrant/base.sh
|
# If you update this, also update vagrant/base.sh
|
||||||
|
|
|
@ -273,7 +273,8 @@ LATEST_3_7 = V_3_7_1
|
||||||
|
|
||||||
# 3.8.x version
|
# 3.8.x version
|
||||||
V_3_8_0 = KafkaVersion("3.8.0")
|
V_3_8_0 = KafkaVersion("3.8.0")
|
||||||
LATEST_3_8 = V_3_8_0
|
V_3_8_1 = KafkaVersion("3.8.1")
|
||||||
|
LATEST_3_8 = V_3_8_1
|
||||||
|
|
||||||
# 4.0.x version
|
# 4.0.x version
|
||||||
V_4_0_0 = KafkaVersion("4.0.0")
|
V_4_0_0 = KafkaVersion("4.0.0")
|
||||||
|
|
|
@ -164,8 +164,8 @@ get_kafka 3.6.2 2.12
|
||||||
chmod a+rw /opt/kafka-3.6.2
|
chmod a+rw /opt/kafka-3.6.2
|
||||||
get_kafka 3.7.1 2.12
|
get_kafka 3.7.1 2.12
|
||||||
chmod a+rw /opt/kafka-3.7.1
|
chmod a+rw /opt/kafka-3.7.1
|
||||||
get_kafka 3.8.0 2.12
|
get_kafka 3.8.1 2.12
|
||||||
chmod a+rw /opt/kafka-3.8.0
|
chmod a+rw /opt/kafka-3.8.1
|
||||||
|
|
||||||
# For EC2 nodes, we want to use /mnt, which should have the local disk. On local
|
# For EC2 nodes, we want to use /mnt, which should have the local disk. On local
|
||||||
# VMs, we can just create it if it doesn't exist and use it like we'd use
|
# VMs, we can just create it if it doesn't exist and use it like we'd use
|
||||||
|
|
Loading…
Reference in New Issue