From 754ffe836d9634e1529d8a142c0bed1e4727f1fc Mon Sep 17 00:00:00 2001 From: Bharath B Date: Thu, 4 Dec 2025 13:00:45 +0530 Subject: [PATCH] NO-JIRA: Updates CI images to use RHEL10 for earlt feedback Signed-off-by: Bharath B --- images/ci/Dockerfile | 2 +- images/ci/operand.Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/images/ci/Dockerfile b/images/ci/Dockerfile index a4dcd312d..5c964ce27 100644 --- a/images/ci/Dockerfile +++ b/images/ci/Dockerfile @@ -14,7 +14,7 @@ COPY . . RUN go build -tags $GO_BUILD_TAGS -o external-secrets-operator cmd/external-secrets-operator/main.go -FROM registry.access.redhat.com/ubi9-minimal:9.4 +FROM registry.ci.openshift.org/rhcos-devel/ocp-4.21-10.1:4.21.0-ec.3-x86_64 ARG SRC_DIR=/go/src/github.com/openshift/external-secrets-operator COPY --from=builder $SRC_DIR/external-secrets-operator /bin/external-secrets-operator USER 65534:65534 diff --git a/images/ci/operand.Dockerfile b/images/ci/operand.Dockerfile index 6431fa600..798efdda8 100644 --- a/images/ci/operand.Dockerfile +++ b/images/ci/operand.Dockerfile @@ -12,8 +12,7 @@ RUN git clone --depth 1 --branch $RELEASE_BRANCH https://github.com/openshift/ex RUN go mod vendor RUN go build -mod=vendor -tags $GO_BUILD_TAGS -o _output/external-secrets main.go -FROM registry.access.redhat.com/ubi9-minimal:9.4 - +FROM registry.ci.openshift.org/rhcos-devel/ocp-4.21-10.1:4.21.0-ec.3-x86_64 ARG SRC_DIR=/go/src/github.com/openshift/external-secrets COPY --from=builder $SRC_DIR/_output/external-secrets /bin/external-secrets