summary refs log tree commit diff
path: root/nixos/tests/mesos.nix
blob: 3610603aeba2c04894a339a92bb0fc359e54cc11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import ./make-test.nix ({ pkgs, ...} : {
  name = "simple";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ offline ];
  };

  machine = { config, pkgs, ... }: {
    services.zookeeper.enable = true;
    virtualisation.docker.enable = true;
    services.mesos = {
      slave = {
        enable = true;
        master = "zk://localhost:2181/mesos";
        attributes = {
          tag1 = "foo";
          tag2 = "bar";
        };
      };
      master = {
        enable = true;
        zk = "zk://localhost:2181/mesos";
      };
    };
  };

  testScript =
    ''
      startAll;
      $machine->waitForUnit("mesos-master.service");
      $machine->waitForUnit("mesos-slave.service");
    '';
})