forked from datacamp/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecs.json
36 lines (36 loc) · 1.01 KB
/
ecs.json
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
{
"$schema": "https://assets.ops.datacamp.com/ecs.schema.json#",
"services": [
{
"cluster": "datacamp-services",
"serviceName": "waffles-stryker-report",
"containers": [
{
"containerName": "waffles-stryker-report",
"containerURI": "708371444347.dkr.ecr.us-east-1.amazonaws.com/waffles-stryker-report:${CIRCLE_SHA1}",
"memoryReservation": 256,
"cpu": 64,
"essential": true,
"containerPort": 80
}
],
"backstage": {
"environment": {
"copyFrom": "/datacamp-staging/waffles-stryker-report",
"variables": {}
}
},
"deployment": {
"strategy": "rollout",
"parameters": {
"gracePeriod": 60,
"failureThreshold": 30,
"window": 240,
"interval": 10,
"slackChannel": "deploys",
"customMessage": "Deploying https://github.com/datacamp-engineering/design-system/tree/${CIRCLE_SHA1}"
}
}
}
]
}