diff --git a/.ci-operator.yaml b/.ci-operator.yaml index e307e5af66..284a910090 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.24-openshift-4.21 + tag: rhel-9-release-golang-1.24-openshift-4.22 diff --git a/Dockerfile.rhel7 b/Dockerfile.rhel7 index ef3b5ce8f4..39d377eb66 100644 --- a/Dockerfile.rhel7 +++ b/Dockerfile.rhel7 @@ -1,6 +1,6 @@ # THIS FILE IS GENERATED FROM Dockerfile DO NOT EDIT # Use RHEL 9 as the primary builder base for the Machine Config Operator -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.21 AS rhel9-builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.22 AS rhel9-builder ARG TAGS="" WORKDIR /go/src/github.com/openshift/machine-config-operator COPY . . @@ -11,7 +11,7 @@ ENV GOMODCACHE="/go/rhel9/pkg/mod" RUN make install DESTDIR=./instroot-rhel9 && tar -C instroot-rhel9 -cf instroot-rhel9.tar . # Add a RHEL 8 builder to compile the RHEL 8 compatible binaries -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.21 AS rhel8-builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.22 AS rhel8-builder ARG TAGS="" WORKDIR /go/src/github.com/openshift/machine-config-operator # Copy the RHEL 8 machine-config-daemon binary and rename @@ -20,7 +20,7 @@ ENV GOCACHE="/go/rhel8/.cache" ENV GOMODCACHE="/go/rhel8/pkg/mod" RUN make install DESTDIR=./instroot-rhel8 && tar -C instroot-rhel8 -cf instroot-rhel8.tar . -FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 ARG TAGS="" COPY install /manifests RUN if [ "${TAGS}" = "fcos" ]; then \