From 55689e88cc461cac2fda618af5e7a16ff32c12fb Mon Sep 17 00:00:00 2001 From: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> Date: Mon, 18 Nov 2024 13:35:25 +0000 Subject: [PATCH] fix: update kind-load target to ensure that works aligned with controller-operator (#462) Standardizing this method simplifies workflows and makes the project more contributor-friendly --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cd489533..3060bb52 100644 --- a/Makefile +++ b/Makefile @@ -215,8 +215,7 @@ kind-cluster-cleanup: $(KIND) ## Delete the kind cluster .PHONY: kind-load kind-load: check-cluster $(KIND) ## Load the built images onto the local cluster - $(KIND) export kubeconfig --name $(KIND_CLUSTER_NAME) - $(KIND) load docker-image $(IMAGE) --name $(KIND_CLUSTER_NAME) + docker save $(IMAGE) | $(KIND) load image-archive /dev/stdin --name $(KIND_CLUSTER_NAME) .PHONY: install install: check-cluster build-container kind-load deploy wait ## Install local catalogd to an existing cluster