mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
fix: makefile nit (#6838)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
9e73ee7c91
commit
15afddd1d3
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -789,7 +789,7 @@ kind-load-image-archive: $(KIND) ## Load docker images from archive
|
||||||
.PHONY: kind-install-kyverno
|
.PHONY: kind-install-kyverno
|
||||||
kind-install-kyverno: $(HELM) ## Install kyverno helm chart
|
kind-install-kyverno: $(HELM) ## Install kyverno helm chart
|
||||||
@echo Install kyverno chart... >&2
|
@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.registry=$(LOCAL_REGISTRY) \
|
||||||
--set admissionController.container.image.repository=$(LOCAL_KYVERNO_REPO) \
|
--set admissionController.container.image.repository=$(LOCAL_KYVERNO_REPO) \
|
||||||
--set admissionController.container.image.tag=$(GIT_SHA) \
|
--set admissionController.container.image.tag=$(GIT_SHA) \
|
||||||
|
@ -809,7 +809,7 @@ kind-install-kyverno: $(HELM) ## Install kyverno helm chart
|
||||||
|
|
||||||
.PHONY: kind-deploy-kyverno
|
.PHONY: kind-deploy-kyverno
|
||||||
kind-deploy-kyverno: $(HELM) kind-load-all ## Build images, load them in kind cluster and deploy kyverno helm chart
|
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
|
.PHONY: kind-deploy-kyverno-policies
|
||||||
kind-deploy-kyverno-policies: $(HELM) ## Deploy kyverno-policies helm chart
|
kind-deploy-kyverno-policies: $(HELM) ## Deploy kyverno-policies helm chart
|
||||||
|
|
Loading…
Reference in a new issue