From a9433892e2de896e52c53e0c02d4cbea703225e1 Mon Sep 17 00:00:00 2001 From: Andrei Pavlov Date: Tue, 25 Jun 2024 14:16:57 +0700 Subject: [PATCH] Hide aws creds from the output Signed-off-by: Andrei Pavlov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9a9d1ac20..4e893a48e 100644 --- a/Makefile +++ b/Makefile @@ -263,7 +263,7 @@ dev-management: .PHONY: dev-aws dev-aws: yq - $(YQ) e ".data.credentials = \"${AWS_CREDENTIALS}\"" config/dev/awscredentials.yaml | $(KUBECTL) -n $(NAMESPACE) apply -f - + @$(YQ) e ".data.credentials = \"${AWS_CREDENTIALS}\"" config/dev/awscredentials.yaml | $(KUBECTL) -n $(NAMESPACE) apply -f - .PHONY: dev-apply dev-apply: kind-deploy crd-install registry-deploy helm-controller-deploy dev-push dev-deploy dev-templates dev-management dev-aws