Created
May 1, 2015 19:06
-
-
Save jamesthompson/8ce160e042b5b1491c41 to your computer and use it in GitHub Desktop.
machine network def
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ numZookeeperNodes ? 1 }: | |
with import <nixpkgs/lib>; | |
let | |
makeMachine = n: nameValuePair "zk-${toString n}" | |
({ config, pkgs, nodes, ... }: | |
let | |
zkServers = concatStrings (mapAttrsToList (node: conf: | |
let zk = conf.config.services.zookeeper; in | |
if zk.enable then "server.${toString zk.id} = ${node}:2888:3888\n" else "" | |
) nodes); | |
allowOthers = concatStrings (mapAttrsToList (node: conf: | |
let zk = conf.config.services.zookeeper; in | |
if zk.enable then '' | |
iptables -A nixos-fw -s ${node} -p tcp -m multiport --dports 2888,3888 -m comment --comment "Allow zookeeper node ${node}" -j ACCEPT | |
'' else "" | |
) nodes); | |
in { | |
config.services.zookeeper = { | |
enable = true; | |
id = n; | |
servers = zkServers; | |
}; | |
config.networking.firewall = { | |
enable = true; | |
allowedTCPPorts = [ 2181 ]; | |
extraCommands = allowOthers; | |
}; | |
config.environment.systemPackages = with pkgs; [ zookeeper netcat ]; | |
}); | |
in listToAttrs (map makeMachine (range 0 (numZookeeperNodes - 1))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment