diff --git a/systemtest/src/test/resources/tiered-storage/Dockerfile b/systemtest/src/test/resources/tiered-storage/Dockerfile index 2ec75e5415e..1620f74718d 100644 --- a/systemtest/src/test/resources/tiered-storage/Dockerfile +++ b/systemtest/src/test/resources/tiered-storage/Dockerfile @@ -2,15 +2,16 @@ ARG BASE_IMAGE FROM ${BASE_IMAGE} -ARG AIVEN_PLUGIN_VERSION="2025-03-14-1741959436" -ARG TIERED_STORAGE_URL="https://github.com/Aiven-Open/tiered-storage-for-apache-kafka/releases/download/" + +ARG AIVEN_PLUGIN_VERSION="1.1.1" +ARG TIERED_STORAGE_URL="https://github.com/Aiven-Open/tiered-storage-for-apache-kafka/releases/download" USER root:root RUN mkdir -p /opt/kafka/plugins/tiered-storage -RUN curl -sL "$TIERED_STORAGE_URL/$AIVEN_PLUGIN_VERSION/s3-0.0.1-SNAPSHOT.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" -RUN curl -sL "$TIERED_STORAGE_URL/$AIVEN_PLUGIN_VERSION/core-0.0.1-SNAPSHOT.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" -RUN curl -sL "$TIERED_STORAGE_URL/$AIVEN_PLUGIN_VERSION/filesystem-0.0.1-SNAPSHOT.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" +RUN curl -sL "$TIERED_STORAGE_URL/v$AIVEN_PLUGIN_VERSION/s3-$AIVEN_PLUGIN_VERSION.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" +RUN curl -sL "$TIERED_STORAGE_URL/v$AIVEN_PLUGIN_VERSION/core-$AIVEN_PLUGIN_VERSION.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" +RUN curl -sL "$TIERED_STORAGE_URL/v$AIVEN_PLUGIN_VERSION/filesystem-$AIVEN_PLUGIN_VERSION.tgz" | tar -xz --strip-components=1 -C "/opt/kafka/plugins/tiered-storage" RUN rm -rf /tmp/tiered-storage