From 2431913d9efb3a5dcd23a59739549aca68ac7441 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Wed, 16 Aug 2023 15:41:48 -0400 Subject: [PATCH] Delete cluster before creating op-dev-e2e test Fixes #350 Signed-off-by: Todd Short --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9667eea95..2fc014026 100644 --- a/Makefile +++ b/Makefile @@ -129,6 +129,7 @@ kind-load: $(KIND) ## Loads the currently constructed image onto the cluster .PHONY: kind-cluster kind-cluster: $(KIND) ## Standup a kind cluster + -$(KIND) delete cluster --name ${KIND_CLUSTER_NAME} $(KIND) create cluster --name ${KIND_CLUSTER_NAME} $(KIND) export kubeconfig --name ${KIND_CLUSTER_NAME}