-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.yml
More file actions
23 lines (17 loc) · 799 Bytes
/
config-example.yml
File metadata and controls
23 lines (17 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# config.yml
# [REQUIRED] The base URL of the Udoo Quad control plane
orchestrator_url: "http://192.168.1.100:8080"
# [OPTIONAL] Unique identifier for this worker.
# If left empty, the worker will use the machine's OS hostname.
worker_id: ""
# [REQUIRED] Local path where the NAS storage is mounted.
# The worker assumes it can read raw files and write output here.
nas_mount_path: "/mnt/nas"
# [OPTIONAL] Directory for temporary transcoding artifacts.
# Ideally an SSD path for speed. Defaults to /tmp/transcode if not set.
temp_dir: "/tmp/transcode-worker"
# [OPTIONAL] How often to sync state with the orchestrator (in seconds).
# This unified sync loop handles both heartbeat and job assignment.
sync_interval: 10s
# [OPTIONAL] Logging verbosity: debug, info, warn, error
log_level: "info"