2015-12-25 14:55:07 +00:00
|
|
|
|
import ./make-test.nix ({ pkgs, ... }:
|
|
|
|
|
let mungekey = "mungeverryweakkeybuteasytointegratoinatest";
|
|
|
|
|
slurmconfig = {
|
|
|
|
|
controlMachine = "control";
|
|
|
|
|
nodeName = ''
|
|
|
|
|
control
|
|
|
|
|
NodeName=node[1-3] CPUs=1 State=UNKNOWN
|
|
|
|
|
'';
|
|
|
|
|
partitionName = "debug Nodes=node[1-3] Default=YES MaxTime=INFINITE State=UP";
|
|
|
|
|
};
|
|
|
|
|
in {
|
|
|
|
|
name = "slurm";
|
|
|
|
|
|
|
|
|
|
nodes =
|
|
|
|
|
let
|
|
|
|
|
computeNode =
|
|
|
|
|
{ config, pkgs, ...}:
|
|
|
|
|
{
|
|
|
|
|
# TODO slrumd port and slurmctld port should be configurations and
|
|
|
|
|
# automatically allowed by the firewall.
|
|
|
|
|
networking.firewall.enable = false;
|
2018-06-01 21:42:21 +00:00
|
|
|
|
services.slurm = {
|
|
|
|
|
client.enable = true;
|
|
|
|
|
} // slurmconfig;
|
2015-12-25 14:55:07 +00:00
|
|
|
|
};
|
|
|
|
|
in {
|
2018-06-01 21:42:21 +00:00
|
|
|
|
|
2015-12-25 14:55:07 +00:00
|
|
|
|
control =
|
|
|
|
|
{ config, pkgs, ...}:
|
|
|
|
|
{
|
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
|
services.slurm = {
|
|
|
|
|
server.enable = true;
|
|
|
|
|
} // slurmconfig;
|
|
|
|
|
};
|
2018-06-01 21:42:21 +00:00
|
|
|
|
|
|
|
|
|
submit =
|
|
|
|
|
{ config, pkgs, ...}:
|
|
|
|
|
{
|
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
|
services.slurm = {
|
|
|
|
|
enableStools = true;
|
|
|
|
|
} // slurmconfig;
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-25 14:55:07 +00:00
|
|
|
|
node1 = computeNode;
|
|
|
|
|
node2 = computeNode;
|
|
|
|
|
node3 = computeNode;
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-01 21:42:21 +00:00
|
|
|
|
|
2015-12-25 14:55:07 +00:00
|
|
|
|
testScript =
|
|
|
|
|
''
|
|
|
|
|
startAll;
|
|
|
|
|
|
|
|
|
|
# Set up authentification across the cluster
|
2018-06-01 21:42:21 +00:00
|
|
|
|
foreach my $node (($submit,$control,$node1,$node2,$node3))
|
2015-12-25 14:55:07 +00:00
|
|
|
|
{
|
|
|
|
|
$node->waitForUnit("default.target");
|
|
|
|
|
|
|
|
|
|
$node->succeed("mkdir /etc/munge");
|
|
|
|
|
$node->succeed("echo '${mungekey}' > /etc/munge/munge.key");
|
|
|
|
|
$node->succeed("chmod 0400 /etc/munge/munge.key");
|
2018-06-08 22:50:28 +00:00
|
|
|
|
$node->succeed("chown munge:munge /etc/munge/munge.key");
|
2015-12-25 14:55:07 +00:00
|
|
|
|
$node->succeed("systemctl restart munged");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Restart the services since they have probably failed due to the munge init
|
|
|
|
|
# failure
|
|
|
|
|
|
|
|
|
|
subtest "can_start_slurmctld", sub {
|
|
|
|
|
$control->succeed("systemctl restart slurmctld");
|
|
|
|
|
$control->waitForUnit("slurmctld.service");
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
subtest "can_start_slurmd", sub {
|
2018-06-01 21:42:21 +00:00
|
|
|
|
foreach my $node (($node1,$node2,$node3))
|
2015-12-25 14:55:07 +00:00
|
|
|
|
{
|
|
|
|
|
$node->succeed("systemctl restart slurmd.service");
|
|
|
|
|
$node->waitForUnit("slurmd");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Test that the cluster work and can distribute jobs;
|
|
|
|
|
|
|
|
|
|
subtest "run_distributed_command", sub {
|
|
|
|
|
# Run `hostname` on 3 nodes of the partition (so on all the 3 nodes).
|
|
|
|
|
# The output must contain the 3 different names
|
2018-06-01 21:42:21 +00:00
|
|
|
|
$submit->succeed("srun -N 3 hostname | sort | uniq | wc -l | xargs test 3 -eq");
|
2015-12-25 14:55:07 +00:00
|
|
|
|
};
|
|
|
|
|
'';
|
|
|
|
|
})
|