-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflightcontrol.json
More file actions
59 lines (59 loc) · 1.56 KB
/
flightcontrol.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"envVariables": {},
"environments": [
{
"id": "production-fcjson",
"name": "Production",
"region": "eu-west-2",
"source": {"pr": false, "branch": "main", "trigger": "push"},
"services": [
{
"id": "nextjs-app-fcjson",
"cpu": 2,
"name": "Next.js App",
"port": 3000,
"type": "fargate",
"memory": 4,
"basePath": ".",
"buildType": "nixpacks",
"autoscaling": {
"cpuThreshold": 70,
"memoryThreshold": 70,
"cooldownTimerSecs": 300,
"requestsPerTarget": 500
},
"envVariables": {},
"maxInstances": 1,
"minInstances": 1,
"healthCheckPath": "/",
"containerInsights": false,
"enableCloudfrontSwr": false,
"versionHistoryCount": 10,
"includeEnvVariablesInBuild": true
},
{
"id": "scheduler-fcjson",
"cpu": 0.5,
"jobs": {
"job-1": {
"cpu": 0.25,
"memory": 0.5,
"schedule": "manual",
"startCommand": "echo 'No start command specified'"
}
},
"name": "Scheduler",
"type": "fargate-scheduler",
"memory": 1,
"basePath": ".",
"buildType": "nixpacks",
"envVariables": {},
"containerInsights": false,
"versionHistoryCount": 10,
"includeEnvVariablesInBuild": true
}
],
"envVariables": {}
}
]
}