@@ -43,17 +43,17 @@ builddeploy_steps: &builddeploy_steps
43
43
source awsenvconf
44
44
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
45
45
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
47
47
echo "Running Masterscript - deploy tc-notifications-consumers service"
48
48
if [ -e ${LOGICAL_ENV}-${APPNAME}-deployvar.json ]; then sudo rm -vf ${LOGICAL_ENV}-${APPNAME}-deployvar.json; fi
49
49
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar
50
50
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
52
52
echo "Running Masterscript - deploy tc-notifications-general-processor service"
53
53
if [ -e ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar.json ]; then sudo rm -vf ${LOGICAL_ENV}-${CONSUMERNAME}-deployvar.json; fi
54
54
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${PROCESSORNAME}-deployvar
55
55
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
57
57
58
58
jobs :
59
59
# Build & Deploy against development backend rer
@@ -72,17 +72,17 @@ jobs:
72
72
source awsenvconf
73
73
./buildenv.sh -e DEV -b dev-tc-notifications-deployvar
74
74
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
76
76
echo "Running Masterscript - deploy tc-notifications-consumers service"
77
77
if [ -e dev-tc-notifications-deployvar.json ]; then sudo rm -vf dev-tc-notifications-deployvar.json; fi
78
78
./buildenv.sh -e DEV -b dev-tc-notifications-consumers-deployvar
79
79
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
81
81
echo "Running Masterscript - deploy tc-notifications-general-processor service"
82
82
if [ -e dev-tc-notifications-consumers-deployvar.json ]; then sudo rm -vf dev-tc-notifications-consumers-deployvar.json; fi
83
83
./buildenv.sh -e DEV -b dev-tc-notifications-general-processor-deployvar
84
84
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
86
86
87
87
" build-qa " :
88
88
<< : *defaults
@@ -111,17 +111,17 @@ jobs:
111
111
source awsenvconf
112
112
./buildenv.sh -e PROD -b prod-tc-notifications-deployvar
113
113
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
115
115
echo "========== Running Masterscript - prod deploy tc-notifications-consumers service ========="
116
116
if [ -e prod-tc-notifications-deployvar.json ]; then sudo rm -vf prod-tc-notifications-deployvar.json; fi
117
117
./buildenv.sh -e PROD -b prod-tc-notifications-consumers-deployvar
118
118
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
120
120
echo "Running Masterscript - prod deploy tc-notifications-general-processor service"
121
121
if [ -e prod-tc-notifications-consumers-deployvar.json ]; then sudo rm -vf prod-tc-notifications-consumers-deployvar.json; fi
122
122
./buildenv.sh -e PROD -b prod-tc-notifications-general-processor-deployvar
123
123
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
125
125
126
126
workflows :
127
127
version : 2
0 commit comments