From 955fc6181bdf3ff3000ba59c0279c619c56ebbe2 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Thu, 11 Dec 2025 14:31:07 -0500 Subject: [PATCH] Move the kind configs into a subdirectory Rather than litter the root directory with kind configs, add them to a subdirectory. Also rename the experimental one to indicate it's for 2 nodes. Signed-off-by: Todd Short --- Makefile | 5 ++--- .../kind-config-2node.yaml | 0 kind-config.yaml => kind-config/kind-config.yaml | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename kind-config-experimental.yaml => kind-config/kind-config-2node.yaml (100%) rename kind-config.yaml => kind-config/kind-config.yaml (100%) diff --git a/Makefile b/Makefile index 7873016992..2e1dcd98e8 100644 --- a/Makefile +++ b/Makefile @@ -63,10 +63,9 @@ KIND_CLUSTER_NAME := operator-controller endif ifeq ($(origin KIND_CONFIG), undefined) -KIND_CONFIG := ./kind-config.yaml +KIND_CONFIG := ./kind-config/kind-config.yaml endif - ifneq (, $(shell command -v docker 2>/dev/null)) CONTAINER_RUNTIME := docker else ifneq (, $(shell command -v podman 2>/dev/null)) @@ -286,7 +285,7 @@ test-e2e: run-internal image-registry prometheus e2e e2e-coverage kind-clean #HE .PHONY: test-experimental-e2e test-experimental-e2e: SOURCE_MANIFEST := $(EXPERIMENTAL_E2E_MANIFEST) test-experimental-e2e: KIND_CLUSTER_NAME := operator-controller-e2e -test-experimental-e2e: KIND_CONFIG := ./kind-config-experimental.yaml +test-experimental-e2e: KIND_CONFIG := ./kind-config/kind-config-2node.yaml test-experimental-e2e: GO_BUILD_EXTRA_FLAGS := -cover test-experimental-e2e: COVERAGE_NAME := experimental-e2e test-experimental-e2e: export MANIFEST := $(EXPERIMENTAL_RELEASE_MANIFEST) diff --git a/kind-config-experimental.yaml b/kind-config/kind-config-2node.yaml similarity index 100% rename from kind-config-experimental.yaml rename to kind-config/kind-config-2node.yaml diff --git a/kind-config.yaml b/kind-config/kind-config.yaml similarity index 100% rename from kind-config.yaml rename to kind-config/kind-config.yaml