From 06719af8151f7c17a9a7820a963efd60a8973990 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 16 Nov 2025 01:07:43 -0600 Subject: [PATCH] feat: spun up zookeeper --- modules/config/instances/config/zookeeper.nix | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 modules/config/instances/config/zookeeper.nix diff --git a/modules/config/instances/config/zookeeper.nix b/modules/config/instances/config/zookeeper.nix new file mode 100755 index 0000000..0aa5985 --- /dev/null +++ b/modules/config/instances/config/zookeeper.nix @@ -0,0 +1,30 @@ +{ moduleFunctions }: +let + inherit (moduleFunctions.instancesFunctions) + varPath + mntPath + ; + label = "Zookeeper"; + name = "zookeeper"; +in + +{ + label = label; + name = name; + interface = { + id = "vm-boonbot"; + mac = "02:00:00:00:53:23"; + idUser = "vmuser-boonbot"; + macUser = "02:00:00:00:00:23"; + ip = "192.168.50.213"; + gate = "192.168.50.1"; + ssh = 2303; + }; + varPaths = { + path0 = "${varPath}/${name}"; + }; + mntPaths = { + path0 = "${mntPath}/${name}"; + }; + +}