From 805ba6c9676fcc9130ac71cfa16393c70b281656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20L=C3=B3pez?= Date: Thu, 19 Sep 2024 16:18:08 +0200 Subject: [PATCH] Fix test-e2e target which was not working if there was no local kustomize installed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d892346..12c2423 100644 --- a/Makefile +++ b/Makefile @@ -267,5 +267,5 @@ kind-deploy: docker-build $(KIND) ## Deploys the operator in the k8s kind cluste $(KUSTOMIZE) build config/testing | kubectl apply -f - test-e2e: export KUBECONFIG = ${PWD}/kubeconfig -test-e2e: kind-create kind-deploy $(KUTTL) ## Run kuttl e2e tests in the k8s kind cluster +test-e2e: kind-create kustomize kind-deploy $(KUTTL) ## Run kuttl e2e tests in the k8s kind cluster $(KUTTL) test \ No newline at end of file