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