From 5f85f6f59dc03bd00ec38b10863289b00e840d19 Mon Sep 17 00:00:00 2001 From: Kyle Aure Date: Fri, 11 Apr 2025 11:12:51 -0500 Subject: [PATCH] refactor: drop support for interops internal repository --- .../componenttest/containers/registry/InternalRegistry.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev/fattest.simplicity/src/componenttest/containers/registry/InternalRegistry.java b/dev/fattest.simplicity/src/componenttest/containers/registry/InternalRegistry.java index 089efd18cd8..de1ef03797b 100644 --- a/dev/fattest.simplicity/src/componenttest/containers/registry/InternalRegistry.java +++ b/dev/fattest.simplicity/src/componenttest/containers/registry/InternalRegistry.java @@ -45,8 +45,7 @@ public class InternalRegistry extends Registry { static { REGISTRY_MIRRORS.put("NONE", "wasliberty-infrastructure-docker"); // images we cache (from sources like dockerhub) // REGISTRY_MIRRORS.put("NONE", "wasliberty-internal-docker-remote"); //TODO replace with a more standard naming scheme - REGISTRY_MIRRORS.put("UNSUPPORTED_INTOPS", "wasliberty-intops-docker-local"); // TODO drop support for this local repository - REGISTRY_MIRRORS.put("UNSUPPORTED_AUTOMA", "websphere-automation"); // Images built from external projects (unsupported by liberty dev) + REGISTRY_MIRRORS.put("UNSUPPORTED", "websphere-automation"); // Images built from external projects (unsupported by liberty dev) REGISTRY_MIRRORS.put("localhost", "wasliberty-internal-docker-local"); // Images we build from Dockerfiles }