Skip to content

Commit

Permalink
Fix multi e2e test image load
Browse files Browse the repository at this point in the history
  • Loading branch information
adejanovski committed Dec 20, 2023
1 parent 0ba137a commit b324204
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b324204

Please sign in to comment.