-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdeploy.sh
63 lines (52 loc) · 1.55 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
JQ="jq --raw-output --exit-status"
configure_aws_cli() {
aws --version
aws configure set default.region us-west-1
aws configure set default.output json
echo "AWS Configured!"
}
register_definition() {
if revision=$(aws ecs register-task-definition --cli-input-json "$task_def" | $JQ '.taskDefinition.taskDefinitionArn'); then
echo "Revision: $revision"
else
echo "Failed to register task definition"
return 1
fi
}
update_service() {
if [[ $(aws ecs update-service --cluster $cluster --service $service --task-definition $revision | $JQ '.service.taskDefinition') != $revision ]]; then
echo "Error updating service."
return 1
fi
}
deploy_cluster() {
cluster="flask-react-cluster"
# users
service="flask-react-users-service"
template="ecs_users_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID $AWS_RDS_URI $PRODUCTION_SECRET_KEY)
echo "$task_def"
register_definition
update_service
# client
service="flask-react-client-service"
template="ecs_client_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID)
echo "$task_def"
register_definition
update_service
}
echo $CODEBUILD_WEBHOOK_BASE_REF
echo $CODEBUILD_WEBHOOK_HEAD_REF
echo $CODEBUILD_WEBHOOK_TRIGGER
echo $CODEBUILD_WEBHOOK_EVENT
if [ "$CODEBUILD_WEBHOOK_TRIGGER" == "branch/master" ] && \
[ "$CODEBUILD_WEBHOOK_HEAD_REF" == "refs/heads/master" ]
then
echo "Updating ECS."
configure_aws_cli
deploy_cluster
fi