From 95b3fbbf9eab6bb9698300762c725d2e2e86d033 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Thu, 1 Apr 2021 19:01:30 +0000 Subject: [PATCH] UPSTREAM: : Updating atomic-openshift-cluster-autoscaler images to be consistent with ART Reconciling with https://github.com/openshift/ocp-build-data/tree/faddb23c310d941d9e9c30c97c6d205f694474cc/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 e9cc4633a5b..2f40106f51f 100644 --- a/images/cluster-autoscaler/Dockerfile.rhel +++ b/images/cluster-autoscaler/Dockerfile.rhel @@ -1,9 +1,9 @@ -FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder WORKDIR /go/src/k8s.io/autoscaler COPY . . RUN go build -o cluster-autoscaler/cluster-autoscaler ./cluster-autoscaler -FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-base-openshift-4.7 +FROM registry.ci.openshift.org/ocp/builder:rhel-8-base-openshift-4.7 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"