From 8662921de8e010025878900ff5a8175f0dd69d37 Mon Sep 17 00:00:00 2001 From: Liam Beckman Date: Tue, 23 Jul 2024 10:41:01 -0700 Subject: [PATCH] Feature/makefile cbds (#60) * Remove confirmation check for installing deployment * Add initial support for CBDS deployments in Makefile * Update Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2696578c..544c2775 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,11 @@ production: check-context deploy ## Deploy the Production commons production-context: change-context # Change to the Production context production production-context: CONTEXT=arn:aws:eks:us-west-2:119548034047:cluster/aced-commons-production +cbds: DEPLOY=cbds +cbds: check-context deploy ## Deploy the cbds commons +cbds-context: change-context # Change to the cbds context +cbds cbds-context: CONTEXT=cbds + context: ## Output the current Kubernetes context @echo "Current context: $(shell kubectl config current-context)" @@ -96,7 +101,6 @@ deploy: check-context check-secrets [yY]) true;; \ *) echo "exiting..." && false;; \ esac - @echo "Deploying $(DEPLOY)" @if [ "$(DEPLOY)" = "local" ]; then \ helm upgrade --install $(DEPLOY) ./helm/gen3 \