-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfly.toml
58 lines (46 loc) · 1.02 KB
/
fly.toml
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
app = ''
primary_region = ''
kill_signal = 'SIGTERM'
kill_timeout = '5m0s'
[env]
QDRANT__CLUSTER__ENABLED = 'true'
QDRANT__SERVICE__HOST = '::'
QDRANT__STORAGE__SNAPSHOTS_PATH = '/data/qdrant/snapshots'
QDRANT__STORAGE__STORAGE_PATH = '/data/qdrant/storage'
[[mounts]]
source = 'qdrant_data'
destination = '/data'
[[services]]
protocol = 'tcp'
internal_port = 6333
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 0
[[services.ports]]
port = 6333
handlers = ['http']
[[services.http_checks]]
interval = 10000
grace_period = "5s"
method = "get"
path = "/healthz"
protocol = "http"
timeout = 2000
tls_skip_verify = false
[[services]]
protocol = 'tcp'
internal_port = 6334
[[services.ports]]
port = 6334
[services.ports.tls_options]
alpn = ['h2']
[[services.tcp_checks]]
interval = '15s'
grace_period = '10s'
[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1
[[metrics]]
port = 6333
path = '/metrics'