From b324204fa5a7cb91760e4ff01d4af96a14eafd30 Mon Sep 17 00:00:00 2001 From: Alexander Dejanovski Date: Wed, 20 Dec 2023 17:15:32 +0100 Subject: [PATCH] Fix multi e2e test image load --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54550b5d4..a60056b06 100644 --- a/Makefile +++ b/Makefile @@ -285,8 +285,9 @@ kind-load-image: kind load docker-image --name $(KIND_CLUSTER) cr.k8ssandra.io/${IMG} kind-load-image-multi: + docker tag ${IMG} cr.k8ssandra.io/${IMG} for ((i = 0; i < $(NUM_CLUSTERS); ++i)); do \ - kind load docker-image --name k8ssandra-$$i ${IMG}; \ + kind load docker-image --name k8ssandra-$$i cr.k8ssandra.io/${IMG}; \ done ##@ Deployment