common images * common images resolve commit with --rebase * Remove bitbucket-pipelines.yml.orig Approved-by: Rachit Bhargava
26 lines
547 B
Bash
26 lines
547 B
Bash
#!/bin/bash
|
|
|
|
export REPO=$BITBUCKET_REPO_SLUG
|
|
export CLUSTER=caresage-eks-cluster-$ENV
|
|
export URL_DOMAIN=$SUBDOMAIN.$ENV-medicalalert.com
|
|
export PROD_URL_DOMAIN=$SUBDOMAIN.medicalalert.com
|
|
export PROD_FIND=medicalalert.com
|
|
|
|
|
|
case $ENV in
|
|
|
|
dev)
|
|
;;
|
|
qa)
|
|
;;
|
|
stage)
|
|
;;
|
|
prod)
|
|
export URL_DOMAIN=$SUBDOMAIN.medicalalert.com
|
|
;;
|
|
*)
|
|
echo "source env varibales"
|
|
echo "Usage: $0 ENV"
|
|
;;
|
|
esac
|