From 13afb570bd1e1790d089e8248a5793543521fb24 Mon Sep 17 00:00:00 2001 From: Jon Huhn Date: Wed, 12 Jul 2023 12:04:39 -0500 Subject: [PATCH] allow AZWI opt-out for e2e tests --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9fa44be0236..6c82346bc31 100644 --- a/Makefile +++ b/Makefile @@ -183,6 +183,7 @@ CLUSTER_TEMPLATE ?= cluster-template.yaml MANAGED_CLUSTER_TEMPLATE ?= cluster-template-aks.yaml export KIND_CLUSTER_NAME ?= capz +export AZWI ?= true ## -------------------------------------- ## Binaries @@ -669,7 +670,7 @@ test-cover: test ## Run tests with code coverage and generate reports. .PHONY: kind-create-bootstrap kind-create-bootstrap: $(KUBECTL) ## Create capz kind bootstrap cluster. - export AZWI=true KIND_CLUSTER_NAME=capz-e2e && ./scripts/kind-with-registry.sh + export KIND_CLUSTER_NAME=capz-e2e && ./scripts/kind-with-registry.sh .PHONY: test-e2e-run test-e2e-run: generate-e2e-templates install-tools kind-create-bootstrap ## Run e2e tests.