From 315f0387e60b470f9c6d64c662d084702f6a30b8 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Sun, 7 Sep 2025 01:47:18 +0000 Subject: [PATCH] Updating ose-operator-framework-tools-container image to be consistent with ART for 4.21 Reconciling with https://github.com/openshift/ocp-build-data/tree/5c68d71385f72cd67a199bc4590068053a833c7d/images/ose-operator-framework-tools.yml --- .ci-operator.yaml | 2 +- operator-framework-tools.Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 461415cbc5..e307e5af66 100644 --- a/.ci-operator.yaml +++ b/.ci-operator.yaml @@ -1,4 +1,4 @@ build_root_image: name: release namespace: openshift - tag: rhel-9-release-golang-1.24-openshift-4.20 + tag: rhel-9-release-golang-1.24-openshift-4.21 diff --git a/operator-framework-tools.Dockerfile b/operator-framework-tools.Dockerfile index ccd89fd178..89da27db82 100644 --- a/operator-framework-tools.Dockerfile +++ b/operator-framework-tools.Dockerfile @@ -1,18 +1,18 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.20 AS builder-rhel8 +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.21 AS builder-rhel8 ENV GOPATH /go ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH WORKDIR /src COPY . . RUN make build/registry cross -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.21 AS builder ENV GOPATH /go ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH WORKDIR /src COPY . . RUN make build/registry cross -FROM registry.ci.openshift.org/ocp/4.20:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 ENTRYPOINT ["sh", "-c", "echo 'Running this image is not supported' && exit 1"] # clear any default CMD CMD []