Skip to content

Commit b011612

Browse files
authored
Update config.yml CORE-1187 [skip ci]
1 parent 695d61e commit b011612

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ builddeploy_steps: &builddeploy_steps
4343
source awsenvconf
4444
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
4545
source buildenvvar
46-
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
46+
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME} -p FARGATE
4747
echo "Running Masterscript - deploy tc-notifications-consumers service"
4848
if [ -e ${LOGICAL_ENV}-${APPNAME}-deployvar.json ]; then sudo rm -vf ${LOGICAL_ENV}-${APPNAME}-deployvar.json; fi
4949
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar
5050
source buildenvvar
51-
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
51+
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME} -p FARGATE
5252
echo "Running Masterscript - deploy tc-notifications-general-processor service"
5353
if [ -e ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar.json ]; then sudo rm -vf ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar.json; fi
5454
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${PROCESSORNAME}-deployvar
5555
source buildenvvar
56-
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
56+
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME} -p FARGATE
5757
5858
jobs:
5959
# Build & Deploy against development backend rer
@@ -72,17 +72,17 @@ jobs:
7272
source awsenvconf
7373
./buildenv.sh -e DEV -b dev-tc-notifications-deployvar
7474
source buildenvvar
75-
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications
75+
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications -p FARGATE
7676
echo "Running Masterscript - deploy tc-notifications-consumers service"
7777
if [ -e dev-tc-notifications-deployvar.json ]; then sudo rm -vf dev-tc-notifications-deployvar.json; fi
7878
./buildenv.sh -e DEV -b dev-tc-notifications-consumers-deployvar
7979
source buildenvvar
80-
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications
80+
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications -p FARGATE
8181
echo "Running Masterscript - deploy tc-notifications-general-processor service"
8282
if [ -e dev-tc-notifications-consumers-deployvar.json ]; then sudo rm -vf dev-tc-notifications-consumers-deployvar.json; fi
8383
./buildenv.sh -e DEV -b dev-tc-notifications-general-processor-deployvar
8484
source buildenvvar
85-
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications
85+
./master_deploy.sh -d ECS -e DEV -t latest -s dev-global-appvar,dev-tc-notifications-appvar -i tc-notifications -p FARGATE
8686
8787
"build-qa":
8888
<<: *defaults
@@ -111,17 +111,17 @@ jobs:
111111
source awsenvconf
112112
./buildenv.sh -e PROD -b prod-tc-notifications-deployvar
113113
source buildenvvar
114-
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications
114+
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications -p FARGATE
115115
echo "========== Running Masterscript - prod deploy tc-notifications-consumers service ========="
116116
if [ -e prod-tc-notifications-deployvar.json ]; then sudo rm -vf prod-tc-notifications-deployvar.json; fi
117117
./buildenv.sh -e PROD -b prod-tc-notifications-consumers-deployvar
118118
source buildenvvar
119-
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications
119+
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications -p FARGATE
120120
echo "Running Masterscript - prod deploy tc-notifications-general-processor service"
121121
if [ -e prod-tc-notifications-consumers-deployvar.json ]; then sudo rm -vf prod-tc-notifications-consumers-deployvar.json; fi
122122
./buildenv.sh -e PROD -b prod-tc-notifications-general-processor-deployvar
123123
source buildenvvar
124-
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications
124+
./master_deploy.sh -d ECS -e PROD -t latest -s prod-global-appvar,prod-tc-notifications-appvar -i tc-notifications -p FARGATE
125125
126126
workflows:
127127
version: 2

0 commit comments

Comments
 (0)