Skip to content

Commit

Permalink
Feature/makefile cbds (#60)
Browse files Browse the repository at this point in the history
* Remove confirmation check for installing deployment

* Add initial support for CBDS deployments in Makefile

* Update Makefile
  • Loading branch information
lbeckman314 authored Jul 23, 2024
1 parent c9c9b83 commit 8662921
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit 8662921

Please sign in to comment.