From 275b0b0e4aec94ca32c80604d1974aa4773c1633 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Thu, 5 Dec 2024 16:39:05 +0000 Subject: [PATCH] UPSTREAM: : Updating atomic-openshift-cluster-autoscaler-container image to be consistent with ART for 4.19 Reconciling with https://github.com/openshift/ocp-build-data/tree/a39508c86497b4e5e463d7b2c78e51e577be9e7d/images/atomic-openshift-cluster-autoscaler.yml --- images/cluster-autoscaler/Dockerfile.rhel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/cluster-autoscaler/Dockerfile.rhel b/images/cluster-autoscaler/Dockerfile.rhel index 11ea52f87b97..f268a6ef0279 100644 --- a/images/cluster-autoscaler/Dockerfile.rhel +++ b/images/cluster-autoscaler/Dockerfile.rhel @@ -1,10 +1,10 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 AS builder WORKDIR /go/src/k8s.io/autoscaler COPY . . WORKDIR /go/src/k8s.io/autoscaler/cluster-autoscaler RUN go build --tags clusterapi -o ./cluster-autoscaler . -FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-openshift-4.18 +FROM registry.ci.openshift.org/ocp/4.19:base-rhel9 COPY --from=builder /go/src/k8s.io/autoscaler/cluster-autoscaler/cluster-autoscaler /usr/bin/ CMD /usr/bin/cluster-autoscaler LABEL summary="Cluster Autoscaler for OpenShift and Kubernetes"