From 15afddd1d3c0d363166026ee6c9c16171e193013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Mon, 10 Apr 2023 23:45:21 +0200 Subject: [PATCH] fix: makefile nit (#6838) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fafea77230..e96d12c2b0 100644 --- a/Makefile +++ b/Makefile @@ -789,7 +789,7 @@ kind-load-image-archive: $(KIND) ## Load docker images from archive .PHONY: kind-install-kyverno kind-install-kyverno: $(HELM) ## Install kyverno helm chart @echo Install kyverno chart... >&2 - $(HELM) upgrade --install kyverno --namespace kyverno --create-namespace --wait ./charts/kyverno \ + @$(HELM) upgrade --install kyverno --namespace kyverno --create-namespace --wait ./charts/kyverno \ --set admissionController.container.image.registry=$(LOCAL_REGISTRY) \ --set admissionController.container.image.repository=$(LOCAL_KYVERNO_REPO) \ --set admissionController.container.image.tag=$(GIT_SHA) \ @@ -809,7 +809,7 @@ kind-install-kyverno: $(HELM) ## Install kyverno helm chart .PHONY: kind-deploy-kyverno kind-deploy-kyverno: $(HELM) kind-load-all ## Build images, load them in kind cluster and deploy kyverno helm chart - $(MAKE) kind-install-kyverno + @$(MAKE) kind-install-kyverno .PHONY: kind-deploy-kyverno-policies kind-deploy-kyverno-policies: $(HELM) ## Deploy kyverno-policies helm chart