From 89ed0b74ed03b05f2a18c75a6371b72bb37920e0 Mon Sep 17 00:00:00 2001 From: Joe Lanford Date: Tue, 19 May 2026 10:47:30 -0400 Subject: [PATCH] UPSTREAM: : Delete openshift/registry.Dockerfile The e2e-test-registry image is no longer built by CI after openshift/release#78581 removed it from the CI config. The dynamic per-scenario catalog system replaced the pre-built registry image, making this Dockerfile dead code. --- openshift/registry.Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 openshift/registry.Dockerfile diff --git a/openshift/registry.Dockerfile b/openshift/registry.Dockerfile deleted file mode 100644 index 82299f67be..0000000000 --- a/openshift/registry.Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS builder - -ARG SOURCE_GIT_COMMIT -ENV GIT_COMMIT=${SOURCE_GIT_COMMIT} -WORKDIR /build -COPY . . -# TODO Modify upstream Makefile to separate the 'go build' commands -# from 'image-registry' target so we don't need these -RUN go build -o ./push ./testdata/push/push.go - -FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 -USER 1001 -COPY --from=builder /build/push /push -COPY testdata/images /images - -LABEL io.k8s.display-name="OpenShift Operator Lifecycle Manager Operator Controller E2E Registry" \ - io.k8s.description="This is a registry image that is used during E2E testing of Operator Controller"