aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-04-14 16:18:23 +0200
committerStefan Boberg <[email protected]>2026-04-14 16:18:23 +0200
commit053b7373357d2555bac111b94c6909bc148f24ac (patch)
tree456a8ce2a1b38ff6aef342324f7fa4c17fdadd30 /xmake.lua
parent5.8.4 (diff)
downloadzen-sb/compute-overmind.tar.xz
zen-sb/compute-overmind.zip
Add Overmind provisioner alongside Horde and Nomadsb/compute-overmind
Introduces the zenovermind module with an HTTP client targeting the Overmind REST gateway (/v1/jobs) and a management-thread provisioner that schedules, polls, and cancels jobs following the same pattern as the existing Nomad provisioner. Wired into the compute server with full CLI options (--overmind-*), lifecycle management, and maintenance tick support behind the ZEN_WITH_OVERMIND compile flag.
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index d2e061852..ab940aeb6 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -442,6 +442,13 @@ option("zennomad")
option_end()
add_define_by_config("ZEN_WITH_NOMAD", "zennomad")
+option("zenovermind")
+ set_default(compute_default)
+ set_showmenu(true)
+ set_description("Enable Overmind worker provisioning")
+option_end()
+add_define_by_config("ZEN_WITH_OVERMIND", "zenovermind")
+
if is_os("windows") then
add_defines("UE_MEMORY_TRACE_AVAILABLE=1")
@@ -501,6 +508,9 @@ end
if has_config("zennomad") then
includes("src/zennomad")
end
+if has_config("zenovermind") then
+ includes("src/zenovermind")
+end
includes("src/zenstore", "src/zenstore-test")
includes("src/zentelemetry", "src/zentelemetry-test")
includes("src/zenutil", "src/zenutil-test")