From e7f590bd719dbe44a0fcc0335e61a277dacc3128 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Mon, 11 Dec 2023 05:24:18 +0000 Subject: [PATCH] UPSTREAM: : Updating ose-powervs-cloud-controller-manager-container image to be consistent with ART Reconciling with https://github.com/openshift/ocp-build-data/tree/c78b2b27f47b41d5d59449c863f3dea6eaa988b7/images/ose-powervs-cloud-controller-manager.yml --- .ci-operator.yaml | 2 +- openshift-hack/images/Dockerfile.openshift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 7096df34e..a83f0f843 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.20-openshift-4.15 + tag: rhel-9-release-golang-1.21-openshift-4.16 diff --git a/openshift-hack/images/Dockerfile.openshift b/openshift-hack/images/Dockerfile.openshift index 3def94f33..10bd156b5 100644 --- a/openshift-hack/images/Dockerfile.openshift +++ b/openshift-hack/images/Dockerfile.openshift @@ -1,11 +1,11 @@ # Build IBM cloud controller manager binary -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.20-openshift-4.15 AS ccm-builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.21-openshift-4.16 AS ccm-builder WORKDIR /build COPY . . RUN CGO_ENABLED=0 go build -ldflags "-s -w" -o ibm-cloud-controller-manager . # Assemble the final image -FROM registry.ci.openshift.org/ocp/4.15:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.16:base-rhel9 LABEL description="IBM Cloud Controller Manager" COPY --from=ccm-builder /build/ibm-cloud-controller-manager /bin/ibm-cloud-controller-manager ENTRYPOINT [ "/bin/ibm-cloud-controller-manager" ]