From 35c03d4898b675f3d425e702c51d6d9bb3716b77 Mon Sep 17 00:00:00 2001 From: Jakub Sliacan Date: Mon, 4 Dec 2023 17:13:56 +0100 Subject: [PATCH] [to-be-revoked] control registry name --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c644a7ed3e..0cf9110799 100644 --- a/Makefile +++ b/Makefile @@ -193,7 +193,9 @@ containerized_e2e: ifndef CRC_E2E_IMG_VERSION CRC_E2E_IMG_VERSION=v$(CRC_VERSION)-$(COMMIT_SHA) endif +ifndef IMG_E2E IMG_E2E = quay.io/crcont/crc-e2e:$(CRC_E2E_IMG_VERSION) +endif containerized_e2e: clean $(CONTAINER_RUNTIME) build -t $(IMG_E2E) -f images/build-e2e/Dockerfile . @@ -203,7 +205,9 @@ containerized_integration: ifndef CRC_INTEGRATION_IMG_VERSION CRC_INTEGRATION_IMG_VERSION=v$(CRC_VERSION)-$(COMMIT_SHA) endif +ifndef IMG_INTEGRATION IMG_INTEGRATION = quay.io/crcont/crc-integration:$(CRC_INTEGRATION_IMG_VERSION) +endif containerized_integration: clean $(CONTAINER_RUNTIME) build -t $(IMG_INTEGRATION) -f images/build-integration/Dockerfile .