From fb1380282a635d32faa4651f00b29a841df3f3fe Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Fri, 2 Dec 2022 10:57:38 +0000 Subject: [PATCH] Revert "images: updating images to be consistent with ART" Image build failurs due to missing dependencies This reverts commit c1df1ebdafe636520c100f42c5b4fa1bd7002245. --- .ci-operator.yaml | 2 +- images/baremetal/Dockerfile.ci | 2 +- images/installer-artifacts/Dockerfile.rhel | 6 +++--- images/installer/Dockerfile.ci | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index b14fb3fdf06..a4eb6d96544 100644 --- a/.ci-operator.yaml +++ b/.ci-operator.yaml @@ -1,4 +1,4 @@ build_root_image: name: release namespace: openshift - tag: rhel-8-release-golang-1.19-openshift-4.12 + tag: rhel-8-release-golang-1.18-openshift-4.12 diff --git a/images/baremetal/Dockerfile.ci b/images/baremetal/Dockerfile.ci index 610b757f5db..d6626adde0b 100644 --- a/images/baremetal/Dockerfile.ci +++ b/images/baremetal/Dockerfile.ci @@ -3,7 +3,7 @@ ARG libvirt_version="8.0.0" -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS builder ARG libvirt_version ARG TAGS="libvirt baremetal" RUN dnf install -y libvirt-devel-$libvirt_version && \ diff --git a/images/installer-artifacts/Dockerfile.rhel b/images/installer-artifacts/Dockerfile.rhel index 843ee408d19..175c911be8a 100644 --- a/images/installer-artifacts/Dockerfile.rhel +++ b/images/installer-artifacts/Dockerfile.rhel @@ -1,7 +1,7 @@ # This Dockerfile builds an image containing Mac and Linux/AMD64 versions of # the installer layered on top of the cluster-native Linux installer image. -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS macbuilder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS macbuilder ARG TAGS="" WORKDIR /go/src/github.com/openshift/installer COPY . . @@ -13,13 +13,13 @@ WORKDIR /go/src/github.com/openshift/installer COPY . . RUN GOOS=darwin GOARCH=arm64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS linuxbuilder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS linuxbuilder ARG TAGS="" WORKDIR /go/src/github.com/openshift/installer COPY . . RUN GOOS=linux GOARCH=amd64 DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build.sh -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS linuxarmbuilder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS linuxarmbuilder ARG TAGS="" WORKDIR /go/src/github.com/openshift/installer COPY . . diff --git a/images/installer/Dockerfile.ci b/images/installer/Dockerfile.ci index 6d2aabf6c3c..c68e88d11c3 100644 --- a/images/installer/Dockerfile.ci +++ b/images/installer/Dockerfile.ci @@ -1,7 +1,7 @@ # This Dockerfile is used by CI to publish the installer image. # It builds an image containing only the openshift-install. -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.12 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS builder ARG TAGS="" WORKDIR /go/src/github.com/openshift/installer COPY . .