-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinput.sample.json
38 lines (38 loc) · 876 Bytes
/
input.sample.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
37
38
{
"name": "lightsail-containers-autoscaler",
"rules": [
{
"enabled": true,
"dry_run": false,
"scaling_type": "dynamic",
"nodes": 3,
"power": "nano",
"metric": "cpu",
"average": 20.0,
"average_operator": "gte",
"average_duration_minutes": 10,
"wait_after_last_deployment_minutes": 10
},
{
"enabled": true,
"dry_run": false,
"scaling_type": "dynamic",
"nodes": 1,
"power": "nano",
"metric": "cpu",
"average": 5.0,
"average_operator": "lte",
"average_duration_minutes": 15,
"wait_after_last_deployment_minutes": 30
},
{
"enabled": true,
"dry_run": false,
"scaling_type": "scheduled",
"nodes": 2,
"power": "micro",
"run_at": "* * 21 * * *",
"wait_after_last_deployment_minutes": 30
}
]
}