No known key found for this signature in database
GPG Key ID: B4C3BF012D9B26BE
3 changed files with
5 additions and
5 deletions
-
machines/node/default.nix
-
modules/netinstall.nix
-
modules/node.nix
|
|
@ -15,6 +15,8 @@ with lib; |
|
|
|
deployment = { |
|
|
|
targetHost = "10.32.47.${toString (100 + id)}"; |
|
|
|
targetUser = "root"; |
|
|
|
|
|
|
|
tags = [ "node" ]; |
|
|
|
}; |
|
|
|
|
|
|
|
hpc.node = { |
|
|
@ -22,6 +24,8 @@ with lib; |
|
|
|
inherit id; |
|
|
|
}; |
|
|
|
|
|
|
|
hpc.netinstall.enable = true; |
|
|
|
|
|
|
|
networking.hostName = config.hpc.node.name; |
|
|
|
|
|
|
|
networking.timeServers = [ |
|
|
|
|
|
@ -8,11 +8,9 @@ with lib; |
|
|
|
}; |
|
|
|
|
|
|
|
config = mkIf config.hpc.netinstall.enable { |
|
|
|
deployment.tags = [ "netinstall" ]; |
|
|
|
|
|
|
|
assertions = [ |
|
|
|
{ |
|
|
|
assertion = elem "data" config.hpc.dhcp.reservations; |
|
|
|
assertion = hasAttr "data" config.hpc.dhcp.reservations; |
|
|
|
message = "NetInstall needs DHCP reservation in data network"; |
|
|
|
} |
|
|
|
]; |
|
|
|
|
|
@ -24,7 +24,5 @@ with lib; |
|
|
|
|
|
|
|
config = mkIf config.hpc.node.enable { |
|
|
|
hpc.node.name = "node-${fixedWidthNumber 2 config.hpc.node.id}"; |
|
|
|
|
|
|
|
deployment.tags = [ "node" ]; |
|
|
|
}; |
|
|
|
} |