nixos/cassandra: Fix test by listening on IP

Seems like you can't have a node as its own seed when it's listening on
an interface instead of an IP. At least the way it was done in the
test doesn't work and I can't figure out any other way than to just
listen on the IP address instead.
This commit is contained in:
Daniel Schaefer 2019-04-09 04:02:49 +02:00
parent c1991fb18d
commit 6778ee1862

View File

@ -2,25 +2,23 @@ import ./make-test.nix ({ pkgs, ...}:
let let
# Change this to test a different version of Cassandra: # Change this to test a different version of Cassandra:
testPackage = pkgs.cassandra; testPackage = pkgs.cassandra;
cassandraCfg = cassandraCfg = hostname:
{ enable = true; { enable = true;
listenAddress = null; listenAddress = hostname;
listenInterface = "eth1"; rpcAddress = hostname;
rpcAddress = null;
rpcInterface = "eth1";
extraConfig = extraConfig =
{ start_native_transport = true; { start_native_transport = true;
seed_provider = seed_provider =
[{ class_name = "org.apache.cassandra.locator.SimpleSeedProvider"; [{ class_name = "org.apache.cassandra.locator.SimpleSeedProvider";
parameters = [ { seeds = "cass0"; } ]; parameters = [ { seeds = "192.168.1.1"; } ];
}]; }];
}; };
package = testPackage; package = testPackage;
}; };
nodeCfg = extra: {pkgs, config, ...}: nodeCfg = hostname: extra: {pkgs, config, ...}:
{ environment.systemPackages = [ testPackage ]; { environment.systemPackages = [ testPackage ];
networking.firewall.enable = false; networking.firewall.enable = false;
services.cassandra = cassandraCfg // extra; services.cassandra = cassandraCfg hostname // extra;
virtualisation.memorySize = 1024; virtualisation.memorySize = 1024;
}; };
in in
@ -28,9 +26,9 @@ in
name = "cassandra-ci"; name = "cassandra-ci";
nodes = { nodes = {
cass0 = nodeCfg {}; cass0 = nodeCfg "192.168.1.1" {};
cass1 = nodeCfg {}; cass1 = nodeCfg "192.168.1.2" {};
cass2 = nodeCfg { jvmOpts = [ "-Dcassandra.replace_address=cass1" ]; }; cass2 = nodeCfg "192.168.1.3" { jvmOpts = [ "-Dcassandra.replace_address=cass1" ]; };
}; };
testScript = '' testScript = ''