feat(members): Add @maurice to the root group

This commit is contained in:
Tom Hubrecht 2023-10-16 09:26:12 +02:00
parent c910159cb2
commit 39159d3b22
2 changed files with 1 additions and 10 deletions

View file

@ -26,10 +26,7 @@ let
groups = {
# members of this group are root on all nodes
root = [ "thubrecht" "raito" ];
# members of this group are root on web nodes
web = [ "mdebray" ];
root = [ "thubrecht" "raito" "mdebray" ];
# members of this group will have root access on the installation isos
iso = [ "thubrecht" "mdebray" "raito" ];

View file

@ -23,8 +23,6 @@ in
builtins.mapAttrs mkNode {
web01 = {
adminGroups = [ "web" ];
deployment = {
tags = [ "web" ];
};
@ -33,16 +31,12 @@ builtins.mapAttrs mkNode {
};
compute01 = {
# adminGroups = [ "bureau" ];
deployment.tags = [ "dns" ];
stateVersion = "23.05";
};
storage01 = {
# adminGroups = [ "bureau" ];
stateVersion = "23.05";
};
}