From 1586474d329413225d7ee7dbe3e0a5f61fc8cc8e Mon Sep 17 00:00:00 2001 From: eromanova Date: Fri, 19 Jul 2024 11:49:34 +0400 Subject: [PATCH] Restart HMC controller on dev-deploy --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b63850f99..af8f7cae2 100644 --- a/Makefile +++ b/Makefile @@ -252,6 +252,7 @@ undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/. .PHONY: dev-deploy dev-deploy: hmc-chart-generate ## Deploy HMC helm chart to the K8s cluster specified in ~/.kube/config. make hmc-deploy HMC_VALUES=config/dev/hmc_values.yaml + $(KUBECTL) rollout restart -n $(NAMESPACE) deployment/hmc-controller-manager .PHONY: dev-undeploy dev-undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.