-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfly.toml
More file actions
69 lines (55 loc) · 1.07 KB
/
fly.toml
File metadata and controls
69 lines (55 loc) · 1.07 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
60
61
62
63
64
65
66
67
68
69
app = 'shaun-etcd-test-2'
primary_region = 'ord'
kill_signal = 'SIGTERM'
kill_timeout = '30s'
[experimental]
auto_rollback = true
[build]
[[mounts]]
source = 'etcd_data'
destination = '/data'
[http_service]
internal_port = 2379
force_https = true
auto_start_machines = true
processes = ['app']
[[services]]
protocol = 'tcp'
internal_port = 2379
auto_start_machines = false
[[services.ports]]
port = 10000
[[services.ports]]
port = 443
handlers = ['tls']
[services.ports.tls_options]
alpn = ['h2']
[services.concurrency]
type = 'connections'
hard_limit = 1000
soft_limit = 300
[checks]
[checks.etcd]
port = 5500
type = 'http'
interval = '15s'
timeout = '10s'
grace_period = '30s'
method = 'get'
path = '/flycheck/etcd'
[checks.vm]
port = 5500
type = 'http'
interval = '1m0s'
timeout = '10s'
grace_period = '1s'
method = 'get'
path = '/flycheck/vm'
[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1
[[metrics]]
port = 2112
path = '/metrics'
https = false