From 1b97b7555f31eb7898041779f0cf285e837d8458 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Sat, 16 Mar 2024 05:44:42 -0400 Subject: [PATCH] Updating ose-cluster-api-container image to be consistent with ART for 4.12 Reconciling with https://github.com/openshift/ocp-build-data/tree/ee4d1f55e26c1f55a9e80aac010ddadae5e198f9/images/ose-cluster-api.yml --- openshift/Dockerfile.openshift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openshift/Dockerfile.openshift b/openshift/Dockerfile.openshift index 96365b730be0..ad3745d66d9c 100644 --- a/openshift/Dockerfile.openshift +++ b/openshift/Dockerfile.openshift @@ -1,4 +1,4 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.17-openshift-4.11 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS builder WORKDIR /build COPY . . @@ -7,7 +7,7 @@ RUN GO111MODULE=on CGO_ENABLED=0 GOOS=${GOOS} GOPROXY=${GOPROXY} go build \ -o=cluster-api-controller-manager \ main.go -FROM registry.ci.openshift.org/ocp/4.11:base +FROM registry.ci.openshift.org/ocp/4.12:base LABEL description="Cluster API Controller Manager"