From 8b018ae45b84bc4773d5fa508c3834a013b8f097 Mon Sep 17 00:00:00 2001 From: Gerd Oberlechner Date: Tue, 17 Dec 2024 14:52:51 +0100 Subject: [PATCH] remove echos from CS deploy Signed-off-by: Gerd Oberlechner --- cluster-service/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-service/Makefile b/cluster-service/Makefile index dfac17f3c..67728090e 100644 --- a/cluster-service/Makefile +++ b/cluster-service/Makefile @@ -4,7 +4,7 @@ $(shell ../templatize.sh $(DEPLOY_ENV) config.tmpl.mk config.mk) include config.mk deploy: provision-shard - ISTO_VERSION=$(shell az aks show -n ${AKS_NAME} -g ${RESOURCEGROUP} --query serviceMeshProfile.istio.revisions[-1] -o tsv) && \ + @ISTO_VERSION=$(shell az aks show -n ${AKS_NAME} -g ${RESOURCEGROUP} --query serviceMeshProfile.istio.revisions[-1] -o tsv) && \ kubectl create namespace cluster-service --dry-run=client -o json | kubectl apply -f - && \ kubectl label namespace cluster-service "istio.io/rev=$${ISTO_VERSION}" --overwrite=true && \ AZURE_CS_MI_CLIENT_ID=$(shell az identity show -g ${RESOURCEGROUP} -n clusters-service --query clientId -o tsv) && \