summaryrefslogtreecommitdiffstats
path: root/modules/tv/config
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-10 20:58:55 +0200
committertv <tv@shackspace.de>2015-07-10 20:58:55 +0200
commitfe7f9a1f3187d2558a9269f8b0abfb89ba5981c9 (patch)
treec28976195faf0659c06865e870cd033c136ea42b /modules/tv/config
parent310c857e3bb71ac950bea6c9b94f76f1cd5dcf3d (diff)
tv.consul: init
Diffstat (limited to 'modules/tv/config')
-rw-r--r--modules/tv/config/consul-client.nix9
-rw-r--r--modules/tv/config/consul-server.nix22
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 00000000..0a8bf4d7
--- /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 00000000..4cedbd34
--- /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
+ ];
+ };
+}