-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathschedules_example.json
More file actions
54 lines (54 loc) · 1.43 KB
/
schedules_example.json
File metadata and controls
54 lines (54 loc) · 1.43 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
[
{
"name": "uptime-check",
"app_name": "shaun-pg-flex",
"schedule": "* * * * *",
"region": "iad",
"command": "sleep 10",
"command_timeout": 30,
"enabled": true,
"config": {
"metadata": {
"fly_process_group": "cron"
},
"auto_destroy": true,
"disable_machine_autostart": true,
"guest": {
"cpu_kind": "shared",
"cpus": 1,
"memory_mb": 512
},
"image": "ghcr.io/livebook-dev/livebook:0.11.4",
"restart": {
"max_retries": 1,
"policy": "no"
}
}
},
{
"name": "storage-check",
"app_name": "shaun-pg-flex",
"schedule": "0 * * * *",
"region": "ord",
"command": "sleep 20",
"command_timeout": 60,
"enabled": true,
"config": {
"metadata": {
"fly_process_group": "cron"
},
"auto_destroy": true,
"disable_machine_autostart": true,
"guest": {
"cpu_kind": "shared",
"cpus": 1,
"memory_mb": 512
},
"image": "docker-hub-mirror.fly.io/library/nginx:latest",
"restart": {
"max_retries": 1,
"policy": "no"
}
}
}
]