From 53cd87ec1cf437dbee77b8183f99d633feb484e1 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Sun, 7 Jun 2026 11:08:24 +0000 Subject: [PATCH] Updating ose-network-metrics-daemon-container image to be consistent with ART for 5.0 Reconciling with https://github.com/openshift-eng/ocp-build-data/tree/af322abdd1a4d7d0161a69a16369a0ab1748515a/images/ose-network-metrics-daemon.yml --- .ci-operator.yaml | 2 +- Dockerfile.openshift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 284a9100..1d88a59f 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.22 + tag: rhel-9-release-golang-1.26-openshift-5.0 diff --git a/Dockerfile.openshift b/Dockerfile.openshift index 8deee8cb..85e86aed 100644 --- a/Dockerfile.openshift +++ b/Dockerfile.openshift @@ -1,5 +1,5 @@ # This dockerfile is specific to building the network metrics daemon for OpenShift -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.22 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.26-openshift-5.0 AS builder # Add everything ENV PKG_NAME=github.com/openshift/network-metrics-daemon @@ -13,7 +13,7 @@ RUN make build-bin WORKDIR / -FROM registry.ci.openshift.org/ocp/4.22:base-rhel9-minimal +FROM registry.ci.openshift.org/ocp/5.0:base-rhel9 COPY --from=builder /go/src/github.com/openshift/network-metrics-daemon/bin/network-metrics-daemon /usr/bin/network-metrics LABEL io.k8s.display-name="Network Metrics Daemon" \