From 98534bf3165e73e7247443b15926e8a9b1dafe9d Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk Date: Tue, 2 Jul 2024 16:20:07 +0200 Subject: [PATCH] Remove kind-redeploy target Signed-off-by: Mikalai Radchuk --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index c2af631b..d8c12dd1 100644 --- a/Makefile +++ b/Makefile @@ -172,11 +172,6 @@ kind-deploy: manifests $(KUSTOMIZE) #EXHELP Install controller and dependencies $(KUSTOMIZE) build $(KUSTOMIZE_BUILD_DIR) > operator-controller.yaml envsubst '$$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$MANIFEST' < scripts/install.tpl.sh | bash -s -.PHONY: kind-redeploy -kind-redeploy: generate docker-build kind-load kind-deploy #EXHELP Redeploy newly built executables - kubectl delete pod -l control-plane=controller-manager -n $(OPERATOR_CONTROLLER_NAMESPACE) - envsubst '$$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$MANIFEST' < scripts/install.tpl.sh | bash -s - .PHONY: kind-cluster kind-cluster: $(KIND) #EXHELP Standup a kind cluster. -$(KIND) delete cluster --name $(KIND_CLUSTER_NAME)