Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions prow/jobs/images/Dockerfile.olm-bundle-pr
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ RUN echo "Installing Helm v3.7.0... " \
&& tar xzf "${HELM_TARBALL}" --strip-components 1 -C /usr/bin \
&& rm "${HELM_TARBALL}"

RUN echo "Installing operator-sdk v1.19.1 ... " \
RUN echo "Installing operator-sdk v1.28.0 ... " \
&& export OPERATOR_SDK_BIN="operator-sdk" \
&& curl -sq -L "https://github.com/operator-framework/operator-sdk/releases/download/v1.19.1/operator-sdk_linux_amd64" --output "${OPERATOR_SDK_BIN}" \
&& curl -sq -L "https://github.com/operator-framework/operator-sdk/releases/download/v1.28.0/operator-sdk_linux_amd64" --output "${OPERATOR_SDK_BIN}" \
&& chmod +x "${OPERATOR_SDK_BIN}" \
&& mv "${OPERATOR_SDK_BIN}" "${OPERATOR_SDK_BIN_PATH}"/"${OPERATOR_SDK_BIN}"

Expand Down
4 changes: 2 additions & 2 deletions prow/jobs/images/Dockerfile.olm-test
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ RUN echo "Installing Helm v3.7.0... " \
&& tar xzf "${HELM_TARBALL}" --strip-components 1 -C /usr/bin \
&& rm "${HELM_TARBALL}"

RUN echo "Installing operator-sdk v1.19.1 ..." \
RUN echo "Installing operator-sdk v1.28.0 ..." \
&& export OPERATOR_SDK_BIN="operator-sdk" \
&& curl -sq -L "https://github.com/operator-framework/operator-sdk/releases/download/v1.19.1/operator-sdk_linux_amd64" --output "${OPERATOR_SDK_BIN}" \
&& curl -sq -L "https://github.com/operator-framework/operator-sdk/releases/download/v1.28.0/operator-sdk_linux_amd64" --output "${OPERATOR_SDK_BIN}" \
&& chmod +x "${OPERATOR_SDK_BIN}" \
&& mv "${OPERATOR_SDK_BIN}" "${OPERATOR_SDK_BIN_PATH}"/"${OPERATOR_SDK_BIN}"

Expand Down