forked from fcgl/search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.sh
82 lines (68 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env bash
# more bash-friendly output for jq
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
}
deploy_cluster() {
family="search"
make_task_def
register_definition
if [[ $(aws ecs update-service --cluster search-cluster --service search-service --task-definition $revision | \
$JQ '.service.taskDefinition') != $revision ]]; then
echo "Error updating service."
return 1
fi
# wait for older revisions to disappear
# not really necessary, but nice for demos
for attempt in {1..30}; do
if stale=$(aws ecs describe-services --cluster search-cluster --services search-service | \
$JQ ".services[0].deployments | .[] | select(.taskDefinition != \"$revision\") | .taskDefinition"); then
echo "Waiting for stale deployments:"
echo "$stale"
sleep 5
else
echo "Deployed!"
return 0
fi
done
echo "Service update took too long."
return 1
}
make_task_def(){
task_template='[
{
"name": "search",
"image": "%s.dkr.ecr.us-east-1.amazonaws.com/search:%s",
"essential": true,
"memory": 200,
"cpu": 10,
"compatibilities" : ["FARGATE"],
"requiresCompatibilities" : ["FARGATE"],
"portMappings": [
{
"containerPort": 80,
"hostPort": 80,
}
]
}
]'
task_def=$(printf "$task_template" $AWS_ACCOUNT_ID $CIRCLE_SHA1)
}
push_ecr_image(){
eval $(aws ecr get-login --region us-east-1 --no-include-email)
docker push $AWS_ACCOUNT_ID.dkr.ecr.us-east-1.amazonaws.com/search:$CIRCLE_SHA1
}
register_definition() {
if revision=$(aws ecs register-task-definition --container-definitions "$task_def" --family $family | $JQ '.taskDefinition.taskDefinitionArn'); then
echo "Revision: $revision"
else
echo "Failed to register task definition"
return 1
fi
}
configure_aws_cli
push_ecr_image
deploy_cluster