From ee759b0caccca8811615b3da9c473b19556dcde2 Mon Sep 17 00:00:00 2001 From: Niklas Voss Date: Thu, 18 Jun 2026 19:41:20 +0200 Subject: [PATCH] chore: add KIND_CONFIG variable to override kind configuration for clusters --- common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mk b/common.mk index 2fd57c4..643ee5f 100644 --- a/common.mk +++ b/common.mk @@ -200,7 +200,7 @@ setup-local-cluster: ## Set up a Kind cluster for local development if it does n echo "Kind cluster '$(KIND_CLUSTER)' already exists. Skipping creation." ;; \ *) \ echo "Creating Kind cluster '$(KIND_CLUSTER)'..."; \ - $(KIND) create cluster --name $(KIND_CLUSTER) ;; \ + $(KIND) create cluster --name $(KIND_CLUSTER) $(if $(KIND_CONFIG),--config $(KIND_CONFIG)) ;; \ esac ##@ Common golang targets