From 19fecad5cb2f4db232541e19e21478e53ed842c8 Mon Sep 17 00:00:00 2001 From: Kirill Sibirev Date: Fri, 12 Apr 2024 14:56:20 +0200 Subject: [PATCH] Return kustomize to the release target (#232) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 19e0feb3..a26242e7 100644 --- a/Makefile +++ b/Makefile @@ -256,7 +256,7 @@ deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion. $(KUSTOMIZE) build config/default | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f - -release: ## Release operator docker imager and helm chart. +release: kustomize ## Release operator docker imager and helm chart. docker build ${DOCKER_BUILD_ARGS} -t $(OPERATOR_IMAGE):${RELEASE_VERSION} . docker push $(OPERATOR_IMAGE):${RELEASE_VERSION} cd config/manager && $(KUSTOMIZE) edit set image controller=$(OPERATOR_IMAGE):${RELEASE_VERSION}