Skip to content

Commit 87b2a72

Browse files
authored
Move the kind configs into a subdirectory (#2384)
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 <tshort@redhat.com>
1 parent 841cbde commit 87b2a72

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,9 @@ KIND_CLUSTER_NAME := operator-controller
6363
endif
6464

6565
ifeq ($(origin KIND_CONFIG), undefined)
66-
KIND_CONFIG := ./kind-config.yaml
66+
KIND_CONFIG := ./kind-config/kind-config.yaml
6767
endif
6868

69-
7069
ifneq (, $(shell command -v docker 2>/dev/null))
7170
CONTAINER_RUNTIME := docker
7271
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
286285
.PHONY: test-experimental-e2e
287286
test-experimental-e2e: SOURCE_MANIFEST := $(EXPERIMENTAL_E2E_MANIFEST)
288287
test-experimental-e2e: KIND_CLUSTER_NAME := operator-controller-e2e
289-
test-experimental-e2e: KIND_CONFIG := ./kind-config-experimental.yaml
288+
test-experimental-e2e: KIND_CONFIG := ./kind-config/kind-config-2node.yaml
290289
test-experimental-e2e: GO_BUILD_EXTRA_FLAGS := -cover
291290
test-experimental-e2e: COVERAGE_NAME := experimental-e2e
292291
test-experimental-e2e: export MANIFEST := $(EXPERIMENTAL_RELEASE_MANIFEST)

0 commit comments

Comments
 (0)