From c9c38071da6390446469cf5d0a9aef2c485e5369 Mon Sep 17 00:00:00 2001 From: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> Date: Mon, 18 Nov 2024 09:28:13 +0000 Subject: [PATCH] fix: update kind-load target to ensure that works aligned with controller-operator 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