From 10db73691b56eb9cb0b0eb1bcdf8a38ee4cefda4 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Fri, 9 Aug 2024 16:59:01 +0000 Subject: [PATCH] UPSTREAM: : Updating atomic-openshift-cluster-autoscaler-container image to be consistent with ART for 4.18 Reconciling with https://github.com/openshift/ocp-build-data/tree/1c7e6e27058c4590e342ecabe8bc96feeb68e7e5/images/atomic-openshift-cluster-autoscaler.yml --- .ci-operator.yaml | 2 +- images/cluster-autoscaler/Dockerfile.rhel | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 1e59c02c25aa..64887a08b418 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.22-openshift-4.17 + tag: rhel-9-release-golang-1.22-openshift-4.18 diff --git a/images/cluster-autoscaler/Dockerfile.rhel b/images/cluster-autoscaler/Dockerfile.rhel index 26fb87466530..11ea52f87b97 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.17 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 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.17 +FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-openshift-4.18 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"