inventory: make sure we always define all roles, even if we don't have machines
this makes write writing modules easier add missing roles assertions
This commit is contained in:
@@ -39,11 +39,9 @@ let
|
|||||||
|
|
||||||
checkService =
|
checkService =
|
||||||
serviceName:
|
serviceName:
|
||||||
let
|
builtins.elem "inventory" (clan-core.lib.modules.getFrontmatter serviceName).features or [ ];
|
||||||
frontmatter = clan-core.lib.modules.getFrontmatter serviceName;
|
|
||||||
in
|
|
||||||
if builtins.elem "inventory" frontmatter.features or [ ] then true else false;
|
|
||||||
|
|
||||||
|
trimExtension = name: builtins.substring 0 (builtins.stringLength name - 4) name;
|
||||||
/*
|
/*
|
||||||
Returns a NixOS configuration for every machine in the inventory.
|
Returns a NixOS configuration for every machine in the inventory.
|
||||||
|
|
||||||
@@ -65,18 +63,29 @@ let
|
|||||||
acc2: instanceName: serviceConfig:
|
acc2: instanceName: serviceConfig:
|
||||||
|
|
||||||
let
|
let
|
||||||
resolvedRoles = builtins.mapAttrs (
|
roles = lib.mapAttrsToList (name: _value: trimExtension name) (
|
||||||
roleName: members:
|
lib.filterAttrs (name: type: type == "regular" && lib.hasSuffix ".nix" name) (
|
||||||
|
builtins.readDir (
|
||||||
|
if clan-core.clanModules ? ${serviceName} then
|
||||||
|
clan-core.clanModules.${serviceName} + "/roles"
|
||||||
|
else
|
||||||
|
throw "ClanModule not found: '${serviceName}'. Make sure the module is added in the 'clanModules' attribute of clan-core."
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
resolvedRoles = lib.genAttrs roles (
|
||||||
|
roleName:
|
||||||
resolveTags {
|
resolveTags {
|
||||||
|
members = serviceConfig.roles.${roleName} or { };
|
||||||
inherit
|
inherit
|
||||||
serviceName
|
serviceName
|
||||||
instanceName
|
instanceName
|
||||||
roleName
|
roleName
|
||||||
inventory
|
inventory
|
||||||
members
|
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
) serviceConfig.roles;
|
);
|
||||||
|
|
||||||
isInService = builtins.any (members: builtins.elem machineName members.machines) (
|
isInService = builtins.any (members: builtins.elem machineName members.machines) (
|
||||||
builtins.attrValues resolvedRoles
|
builtins.attrValues resolvedRoles
|
||||||
@@ -98,18 +107,12 @@ let
|
|||||||
# TODO: maybe optimize this dont lookup the role in inverse roles. Imports are not lazy
|
# TODO: maybe optimize this dont lookup the role in inverse roles. Imports are not lazy
|
||||||
roleModules = builtins.map (
|
roleModules = builtins.map (
|
||||||
role:
|
role:
|
||||||
let
|
if builtins.elem role roles && clan-core.clanModules ? ${serviceName} then
|
||||||
# Check the module exists
|
clan-core.clanModules.${serviceName} + "/roles/${role}.nix"
|
||||||
module =
|
|
||||||
clan-core.clanModules.${serviceName}
|
|
||||||
or (throw "ClanModule not found: '${serviceName}'. Make sure the module is added in the 'clanModules' attribute of clan-core.");
|
|
||||||
|
|
||||||
path = module + "/roles/${role}.nix";
|
|
||||||
in
|
|
||||||
if builtins.pathExists path then
|
|
||||||
path
|
|
||||||
else
|
else
|
||||||
throw "Module doesn't have role: '${role}'. Role: ${role}.nix not found."
|
throw "Module ${serviceName} doesn't have role: '${role}'. Role: ${
|
||||||
|
clan-core.clanModules.${serviceName}
|
||||||
|
}/roles/${role}.nix not found."
|
||||||
) machineRoles;
|
) machineRoles;
|
||||||
|
|
||||||
roleServiceConfigs = builtins.filter (m: m != { }) (
|
roleServiceConfigs = builtins.filter (m: m != { }) (
|
||||||
@@ -119,8 +122,14 @@ let
|
|||||||
extraModules = map (s: if builtins.typeOf s == "string" then "${directory}/${s}" else s) (
|
extraModules = map (s: if builtins.typeOf s == "string" then "${directory}/${s}" else s) (
|
||||||
globalExtraModules ++ machineExtraModules ++ roleServiceExtraModules
|
globalExtraModules ++ machineExtraModules ++ roleServiceExtraModules
|
||||||
);
|
);
|
||||||
|
|
||||||
|
nonExistingRoles = builtins.filter (role: !(builtins.elem role roles)) (
|
||||||
|
builtins.attrNames (serviceConfig.roles or { })
|
||||||
|
);
|
||||||
in
|
in
|
||||||
if !(serviceConfig.enabled or true) then
|
if (nonExistingRoles != [ ]) then
|
||||||
|
throw "Roles ${builtins.toString nonExistingRoles} are not defined in the service ${serviceName}."
|
||||||
|
else if !(serviceConfig.enabled or true) then
|
||||||
acc2
|
acc2
|
||||||
else if isInService then
|
else if isInService then
|
||||||
acc2
|
acc2
|
||||||
@@ -139,14 +148,13 @@ let
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
({
|
||||||
{
|
clan.inventory.services.${serviceName}.${instanceName} = {
|
||||||
config.clan.inventory.services.${serviceName}.${instanceName} = {
|
|
||||||
roles = resolvedRoles;
|
roles = resolvedRoles;
|
||||||
# TODO: Add inverseRoles to the service config if needed
|
# TODO: Add inverseRoles to the service config if needed
|
||||||
# inherit inverseRoles;
|
# inherit inverseRoles;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
acc2
|
acc2
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ in
|
|||||||
expr = configs;
|
expr = configs;
|
||||||
expectedError = {
|
expectedError = {
|
||||||
type = "ThrownError";
|
type = "ThrownError";
|
||||||
msg = "Module doesn't have role.*";
|
msg = "Roles roleXYZ are not defined in the service borgbackup.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
test_inventory_tag_doesnt_exist =
|
test_inventory_tag_doesnt_exist =
|
||||||
|
|||||||
Reference in New Issue
Block a user