feat: spun up zookeeper

This commit is contained in:
Nick 2025-11-16 01:07:43 -06:00
parent 2117d74bbb
commit 06719af815

View file

@ -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}";
};
}