From 193c83ee3976e8eeac37998912f4cc2d06030ed6 Mon Sep 17 00:00:00 2001 From: Gor Poghosyan Date: Thu, 22 Dec 2022 20:03:05 +0400 Subject: [PATCH] fix the KUSTOMIZE version in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c1373ef..967b60f 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ controller-gen: ## Download controller-gen locally if necessary. KUSTOMIZE = $(shell pwd)/bin/kustomize kustomize: ## Download kustomize locally if necessary. - $(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@latest) + $(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.5.7) # go-get-tool will 'go install' any package $2 and install it to $1. PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))