9 lines
418 B
Text
9 lines
418 B
Text
let daemon_schema = import "../provisioning-daemon.ncl" in
|
|
{
|
|
daemon | daemon_schema.DaemonConfig = {
|
|
daemon = { enabled = true, poll_interval = 30, max_workers = 16, },
|
|
logging = { level = "info", file = "/var/log/provisioning/daemon.log", syslog = true, },
|
|
actions = { auto_cleanup = true, auto_update = true, workspace_sync = true, health_checks = true, },
|
|
monitoring = { enabled = true, },
|
|
},
|
|
}
|