This repository has been archived by the owner on Apr 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
docker-deploy-prod.sh
executable file
·77 lines (65 loc) · 2.24 KB
/
docker-deploy-prod.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
if [ -z "$TRAVIS_PULL_REQUEST" ] || [ "$TRAVIS_PULL_REQUEST" == "false" ]
then
if [ "$TRAVIS_BRANCH" == "production" ]
then
JQ="jq --raw-output --exit-status"
configure_aws_cli() {
aws --version
aws configure set default.region us-east-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="my-dev-space-production-cluster"
# users
service="my-dev-space-users-prod-service"
template="ecs_users_prod_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID $AWS_RDS_USERS_URI $SECRET_KEY $NEW_RELIC_LICENSE_KEY)
echo "$task_def"
register_definition
update_service
# events
service="my-dev-space-events-prod-service"
template="ecs_events_prod_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID $AWS_RDS_EVENTS_URI $SECRET_KEY $NEW_RELIC_LICENSE_KEY)
echo "$task_def"
register_definition
update_service
# client
service="my-dev-space-client-prod-service"
template="ecs_client_prod_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID)
echo "$task_def"
register_definition
update_service
# swagger
service="my-dev-space-swagger-prod-service"
template="ecs_swagger_prod_taskdefinition.json"
task_template=$(cat "ecs/$template")
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID)
echo "$task_def"
register_definition
update_service
}
configure_aws_cli
deploy_cluster
fi
fi