diff options
author | tv <tv@shackspace.de> | 2015-07-10 20:58:55 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-10 20:58:55 +0200 |
commit | fe7f9a1f3187d2558a9269f8b0abfb89ba5981c9 (patch) | |
tree | c28976195faf0659c06865e870cd033c136ea42b /modules/tv/config | |
parent | 310c857e3bb71ac950bea6c9b94f76f1cd5dcf3d (diff) |
tv.consul: init
Diffstat (limited to 'modules/tv/config')
-rw-r--r-- | modules/tv/config/consul-client.nix | 9 | ||||
-rw-r--r-- | modules/tv/config/consul-server.nix | 22 |
2 files changed, 31 insertions, 0 deletions
diff --git a/modules/tv/config/consul-client.nix b/modules/tv/config/consul-client.nix new file mode 100644 index 000000000..0a8bf4d75 --- /dev/null +++ b/modules/tv/config/consul-client.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + imports = [ ./consul-server.nix ]; + + tv.consul = { + server = pkgs.lib.mkForce false; + }; +} diff --git a/modules/tv/config/consul-server.nix b/modules/tv/config/consul-server.nix new file mode 100644 index 000000000..4cedbd349 --- /dev/null +++ b/modules/tv/config/consul-server.nix @@ -0,0 +1,22 @@ +{ config, ... }: + +{ + imports = [ ../../tv/consul ]; + tv.consul = rec { + enable = true; + + inherit (config.tv.identity) self; + inherit (self) dc; + + server = true; + + hosts = with config.tv.identity.hosts; [ + # TODO get this list automatically from each host where tv.consul.enable is true + cd + mkdir + nomic + rmdir + #wu + ]; + }; +} |