From b684761ad5d100db808cff75d13a1e3e4062e19a Mon Sep 17 00:00:00 2001 From: Aliaksei Makarau Date: Thu, 9 Nov 2023 11:03:23 +0100 Subject: [PATCH] update --- Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Makefile b/Makefile index f2d71d08f..9eb922a14 100644 --- a/Makefile +++ b/Makefile @@ -123,19 +123,11 @@ undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/. .PHONY: kustomize KUSTOMIZE = $(shell pwd)/bin/kustomize kustomize: ## Download kustomize locally if necessary. -ifeq (,$(wildcard $(KUSTOMIZE))) -ifeq (,$(shell which kustomize 2>/dev/null)) - @{ \ set -e ;\ mkdir -p $(dir $(KUSTOMIZE)) ;\ curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v5.2.1/kustomize_v5.2.1_$(OS)_amd64.tar.gz -o kustomize.tar.gz ; \ tar xzf kustomize.tar.gz -C bin/ ;\ rm -f kustomize.tar.gz ;\ - } -else -KUSTOMIZE = $(shell which kustomize) -endif -endif .PHONY: ansible-operator ANSIBLE_OPERATOR = $(shell pwd)/bin/ansible-operator