From 62f07824b6e9245cb9c8d6b1e483213d5f4da154 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Sat, 20 Dec 2025 01:01:20 +0000 Subject: [PATCH] Updating monitoring-plugin-container image to be consistent with ART for 4.22 Reconciling with https://github.com/openshift/ocp-build-data/tree/087d1930e36b609f77d73bd8a313d85c940cff4d/images/monitoring-plugin.yml --- .ci-operator.yaml | 2 +- Dockerfile.art | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index e307e5af6..284a91009 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.21 + tag: rhel-9-release-golang-1.24-openshift-4.22 diff --git a/Dockerfile.art b/Dockerfile.art index c399a90c4..951cccac9 100644 --- a/Dockerfile.art +++ b/Dockerfile.art @@ -1,4 +1,4 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.21 AS web-builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.22 AS web-builder # Copy app sources COPY $REMOTE_SOURCES $REMOTE_SOURCES_DIR @@ -17,7 +17,7 @@ RUN test -d ${REMOTE_SOURCES_DIR}/cachito-gomod-with-deps || exit 1; \ && make build-frontend -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.21 AS go-builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.22 AS go-builder COPY $REMOTE_SOURCES $REMOTE_SOURCES_DIR WORKDIR $REMOTE_SOURCES_DIR/cachito-gomod-with-deps/app @@ -28,7 +28,7 @@ ENV CGO_ENABLED=1 RUN source $REMOTE_SOURCES_DIR/cachito-gomod-with-deps/cachito.env \ && make build-backend BUILD_OPTS="-tags strictfipsruntime" -FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 USER 1001