feat(meta): Introduce mailing-list declaration
All checks were successful
Check meta / check_meta (pull_request) Successful in 15s
Check meta / check_meta (push) Successful in 16s
Check meta / check_dns (push) Successful in 16s
Check meta / check_dns (pull_request) Successful in 15s
Build all the nodes / netaccess01 (pull_request) Successful in 21s
Build all the nodes / netcore01 (pull_request) Successful in 20s
Build all the nodes / netcore02 (pull_request) Successful in 21s
Run pre-commit on all files / pre-commit (push) Successful in 25s
Check workflows / check_workflows (pull_request) Successful in 26s
Build all the nodes / ap01 (pull_request) Successful in 41s
Build the shell / build-shell (pull_request) Successful in 40s
Run pre-commit on all files / pre-commit (pull_request) Successful in 25s
Build all the nodes / geo01 (pull_request) Successful in 1m32s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m33s
Build all the nodes / bridge01 (pull_request) Successful in 1m45s
Build all the nodes / geo02 (pull_request) Successful in 1m48s
Build all the nodes / build01 (pull_request) Successful in 1m51s
Build all the nodes / web02 (pull_request) Successful in 1m36s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m4s
Build all the nodes / rescue01 (pull_request) Successful in 2m5s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m12s
Build all the nodes / tower01 (pull_request) Successful in 1m59s
Build all the nodes / web03 (pull_request) Successful in 1m55s
Build all the nodes / storage01 (pull_request) Successful in 2m5s
Build all the nodes / vault01 (pull_request) Successful in 2m7s
Build all the nodes / web01 (pull_request) Successful in 2m30s
Build all the nodes / compute01 (pull_request) Successful in 2m53s
All checks were successful
Check meta / check_meta (pull_request) Successful in 15s
Check meta / check_meta (push) Successful in 16s
Check meta / check_dns (push) Successful in 16s
Check meta / check_dns (pull_request) Successful in 15s
Build all the nodes / netaccess01 (pull_request) Successful in 21s
Build all the nodes / netcore01 (pull_request) Successful in 20s
Build all the nodes / netcore02 (pull_request) Successful in 21s
Run pre-commit on all files / pre-commit (push) Successful in 25s
Check workflows / check_workflows (pull_request) Successful in 26s
Build all the nodes / ap01 (pull_request) Successful in 41s
Build the shell / build-shell (pull_request) Successful in 40s
Run pre-commit on all files / pre-commit (pull_request) Successful in 25s
Build all the nodes / geo01 (pull_request) Successful in 1m32s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m33s
Build all the nodes / bridge01 (pull_request) Successful in 1m45s
Build all the nodes / geo02 (pull_request) Successful in 1m48s
Build all the nodes / build01 (pull_request) Successful in 1m51s
Build all the nodes / web02 (pull_request) Successful in 1m36s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m4s
Build all the nodes / rescue01 (pull_request) Successful in 2m5s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m12s
Build all the nodes / tower01 (pull_request) Successful in 1m59s
Build all the nodes / web03 (pull_request) Successful in 1m55s
Build all the nodes / storage01 (pull_request) Successful in 2m5s
Build all the nodes / vault01 (pull_request) Successful in 2m7s
Build all the nodes / web01 (pull_request) Successful in 2m30s
Build all the nodes / compute01 (pull_request) Successful in 2m53s
This commit is contained in:
parent
b7c225a9cd
commit
e3c0566f3f
5 changed files with 214 additions and 5 deletions
|
@ -89,6 +89,14 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
teams = mkOption {
|
||||
type = listOf str;
|
||||
default = [ ];
|
||||
description = ''
|
||||
List of teams this members is part of.
|
||||
'';
|
||||
};
|
||||
|
||||
username = mkOption {
|
||||
type = str;
|
||||
default = name;
|
||||
|
@ -151,6 +159,32 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
mailing-lists = mkOption {
|
||||
type = attrsOf (submodule {
|
||||
options = {
|
||||
members = mkOption {
|
||||
type = listOf str;
|
||||
apply = unique;
|
||||
description = ''
|
||||
Members of this mailing-list.
|
||||
'';
|
||||
};
|
||||
aliases = mkOption {
|
||||
type = listOf str;
|
||||
default = [ ];
|
||||
description = ''
|
||||
Alternative names for this mailing-list.
|
||||
|
||||
Excessive aliases is strongly discouraged.
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
description = ''
|
||||
Public mailing-lists of the DGNum organization.
|
||||
'';
|
||||
};
|
||||
|
||||
services = mkOption {
|
||||
type = attrsOf (
|
||||
submodule (
|
||||
|
@ -497,6 +531,11 @@ in
|
|||
(membersExists (
|
||||
name: "A member of the external service ${name} admins was not found in the members list."
|
||||
) org.external)
|
||||
|
||||
# Check that all ML members are declared
|
||||
(membersExists (name: "A member of the mailing-list ${name} was not found in the members list.") (
|
||||
extract "members" org.mailing-lists
|
||||
))
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./emails.nix
|
||||
./groups.nix
|
||||
./members.nix
|
||||
./services.nix
|
||||
|
|
103
meta/organization/emails.nix
Normal file
103
meta/organization/emails.nix
Normal file
|
@ -0,0 +1,103 @@
|
|||
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: EUPL-1.2
|
||||
|
||||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
attrNames
|
||||
attrValues
|
||||
catAttrs
|
||||
concatLists
|
||||
genAttrs
|
||||
mapAttrs'
|
||||
mapAttrsToList
|
||||
mkMerge
|
||||
nameValuePair
|
||||
;
|
||||
in
|
||||
|
||||
{
|
||||
organization.mailing-lists = mkMerge (
|
||||
[
|
||||
{
|
||||
# admins contains the members that have root access on at least one machine
|
||||
admins = {
|
||||
members =
|
||||
(concatLists (catAttrs "admins" (attrValues config.nodes))) ++ config.organization.groups.root;
|
||||
|
||||
aliases = [
|
||||
"acme"
|
||||
"sysadmins"
|
||||
"tech"
|
||||
];
|
||||
};
|
||||
|
||||
equipe = {
|
||||
members = attrNames config.organization.members;
|
||||
aliases = [
|
||||
"benevoles"
|
||||
"ekip"
|
||||
"equipage"
|
||||
];
|
||||
};
|
||||
|
||||
k-num.members = [
|
||||
"cst1"
|
||||
"jemagius"
|
||||
"luj"
|
||||
];
|
||||
|
||||
"apple.projet-fai".members = [
|
||||
"cst1"
|
||||
"mdebray"
|
||||
];
|
||||
|
||||
federez.members = [
|
||||
"jemagius"
|
||||
"luj"
|
||||
"raito"
|
||||
"thubrecht"
|
||||
];
|
||||
|
||||
# Refinment of the automatic creation
|
||||
group-bureau.aliases = [ "bureau" ];
|
||||
group-trez.aliases = [
|
||||
"treso"
|
||||
"tresorerie"
|
||||
"trez"
|
||||
];
|
||||
|
||||
equipe-com.aliases = [
|
||||
"com"
|
||||
"communication"
|
||||
];
|
||||
equipe-ekahau.aliases = [ "ekahau" ];
|
||||
equipe-fai.aliases = [
|
||||
"fai"
|
||||
"projet-fai"
|
||||
];
|
||||
equipe-hack-days.aliases = [
|
||||
"dinum-orga"
|
||||
];
|
||||
equipe-ssi.aliases = [
|
||||
"rssi"
|
||||
"ssi"
|
||||
];
|
||||
}
|
||||
|
||||
(mapAttrs' (
|
||||
group: members: nameValuePair "group-${group}" { inherit members; }
|
||||
) config.organization.groups)
|
||||
]
|
||||
++ (mapAttrsToList (
|
||||
name:
|
||||
{ teams, ... }:
|
||||
genAttrs (builtins.map (team: "equipe-${team}") teams) (_: {
|
||||
members = [ name ];
|
||||
})
|
||||
) config.organization.members)
|
||||
);
|
||||
|
||||
}
|
|
@ -17,16 +17,22 @@
|
|||
groups = {
|
||||
# members of this group are root on all nodes
|
||||
root = [
|
||||
"thubrecht"
|
||||
"raito"
|
||||
"mdebray"
|
||||
"raito"
|
||||
"thubrecht"
|
||||
];
|
||||
|
||||
bureau = [
|
||||
"jemagius"
|
||||
"raito"
|
||||
"mdebray"
|
||||
"ecoppens"
|
||||
"jemagius"
|
||||
"mdebray"
|
||||
"raito"
|
||||
];
|
||||
|
||||
trez = [
|
||||
"jemagius"
|
||||
"mdebray"
|
||||
"raito"
|
||||
];
|
||||
|
||||
# members of this group are root on the fai infrastructure
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
agroudiev = {
|
||||
name = "Antoine Groudiev";
|
||||
email = "antoine.groudiev@dgnum.eu";
|
||||
teams = [
|
||||
"com"
|
||||
"fai"
|
||||
];
|
||||
sshKeys = [
|
||||
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDgyt3ntpcoI/I2n97R1hzjBiNL6R98S73fSi7pkSE/8mQbI8r9GzsPUBcxQ+tIg0FgwkLxTwF8DwLf0E+Le/rPznxBS5LUQaAktSQSrxz/IIID1+jN8b03vf5PjfKS8H2Tu3Q8jZXa8HNsj3cpySpGMqGrE3ieUmknd/YfppRRf+wM4CsGKZeS3ZhB9oZi3Jn22A0U/17AOJTnv4seq+mRZWRQt3pvQvpp8/2M7kEqizie/gTr/DnwxUr45wisqYYH4tat9Cw6iDr7LK10VCrK37BfFagMIZ08Hkh3c46jghjYNQWe+mBUWJByWYhTJ0AtYrbaYeUV1HVYbsRJ6bNx25K6794QQPaE/vc2Z/VK/ILgvJ+9myFSAWVylCWdyYpwUu07RH/jDBl2aqH62ESwAG7SDUUcte6h9N+EryAQLWc8OhsGAYLpshhBpiqZwzX90m+nkbhx1SqMbtt6TS+RPDEHKFYn8E6FBrf1FK34482ndq/hHXZ88mqzGb1nOnM="
|
||||
];
|
||||
|
@ -26,11 +30,21 @@
|
|||
aouaknine = {
|
||||
name = "Anaëlle Ouaknine";
|
||||
email = "anaelle.ouaknine@dgnum.eu";
|
||||
teams = [
|
||||
"com"
|
||||
"fai"
|
||||
];
|
||||
};
|
||||
|
||||
catvayor = {
|
||||
name = "Lubin Bailly";
|
||||
email = "catvayor@dgnum.eu";
|
||||
teams = [
|
||||
"dev"
|
||||
"fai"
|
||||
"hack-days"
|
||||
"jourdan"
|
||||
];
|
||||
username = "lbailly";
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFfIJ8BToZ9EDxBsEJXQhUju7gm+rUDjGCNMvFSZCl1o openpgp:0x5CADCA1B"
|
||||
|
@ -41,6 +55,13 @@
|
|||
cst1 = {
|
||||
name = "Constantin Gierczak--Galle";
|
||||
email = "cst1@dgnum.eu";
|
||||
teams = [
|
||||
"com"
|
||||
"dev"
|
||||
"ekahau"
|
||||
"fai"
|
||||
"jourdan"
|
||||
];
|
||||
username = "cgierczakgalle";
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKrijwPlb7KQkYPLznMPVzPPT69cLzhEsJzZi9tmxzTh cst1@x270"
|
||||
|
@ -50,12 +71,26 @@
|
|||
ecoppens = {
|
||||
name = "Elias Coppens";
|
||||
email = "ecoppens@dgnum.eu";
|
||||
teams = [
|
||||
"com"
|
||||
"dev"
|
||||
"fai"
|
||||
"hack-days"
|
||||
"jourdan"
|
||||
];
|
||||
sshKeys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIGmU7yEOCGuGNt4PlQbzd0Cms1RePpo8yEA7Ij/+TdA" ];
|
||||
};
|
||||
|
||||
jemagius = {
|
||||
name = "Jean-Marc Gailis";
|
||||
email = "jm@dgnum.eu";
|
||||
teams = [
|
||||
"com"
|
||||
"fai"
|
||||
"hack-days"
|
||||
"jourdan"
|
||||
"ssi"
|
||||
];
|
||||
username = "jgailis";
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOoxmou5OU74GgpIUkhVt6GiB+O9Jy4ge0TwK5MDFJ2F"
|
||||
|
@ -66,6 +101,7 @@
|
|||
luj = {
|
||||
name = "Julien Malka";
|
||||
email = "luj@dgnum.eu";
|
||||
teams = [ "fai" ];
|
||||
username = "jmalka";
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDMBW7rTtfZL9wtrpCVgariKdpN60/VeAzXkh9w3MwbO julien@enigma"
|
||||
|
@ -76,6 +112,7 @@
|
|||
mboyer = {
|
||||
name = "Matthieu Boyer";
|
||||
email = "matthieu.boyer@dgnum.eu";
|
||||
teams = [ "dev" ];
|
||||
username = "mboyer02";
|
||||
sshKeys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGYnwZaFYvUxtJeNvpaA20rLfq8fOO4dFp7cIXsD8YNx" ];
|
||||
};
|
||||
|
@ -83,6 +120,14 @@
|
|||
mdebray = {
|
||||
name = "Maurice Debray";
|
||||
email = "maurice.debray@dgnum.eu";
|
||||
teams = [
|
||||
"calendrier"
|
||||
"castopod"
|
||||
"dev"
|
||||
"ekahau"
|
||||
"fai"
|
||||
"vote"
|
||||
];
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEpwF+XD3HgX64kqD42pcEZRNYAWoO4YNiOm5KO4tH6o maurice@polaris"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFdDnSl3cyWil+S5JiyGqOvBR3wVh+lduw58S5WvraoL maurice@fekda"
|
||||
|
@ -92,6 +137,13 @@
|
|||
raito = {
|
||||
name = "Ryan Lahfa";
|
||||
email = "ryan@dgnum.eu";
|
||||
teams = [
|
||||
"dev"
|
||||
"ekahau"
|
||||
"fai"
|
||||
"hack-days"
|
||||
"ssi"
|
||||
];
|
||||
username = "rlahfa";
|
||||
sshKeys = [
|
||||
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDcEkYM1r8QVNM/G5CxJInEdoBCWjEHHDdHlzDYNSUIdHHsn04QY+XI67AdMCm8w30GZnLUIj5RiJEWXREUApby0GrfxGGcy8otforygfgtmuUKAUEHdU2MMwrQI7RtTZ8oQ0USRGuqvmegxz3l5caVU7qGvBllJ4NUHXrkZSja2/51vq80RF4MKkDGiz7xUTixI2UcBwQBCA/kQedKV9G28EH+1XfvePqmMivZjl+7VyHsgUVj9eRGA1XWFw59UPZG8a7VkxO/Eb3K9NF297HUAcFMcbY6cPFi9AaBgu3VC4eetDnoN/+xT1owiHi7BReQhGAy/6cdf7C/my5ehZwD"
|
||||
|
@ -106,6 +158,14 @@
|
|||
thubrecht = {
|
||||
name = "Tom Hubrecht";
|
||||
email = "tom.hubrecht@dgnum.eu";
|
||||
teams = [
|
||||
"calendrier"
|
||||
"dev"
|
||||
"fai"
|
||||
"hack-days"
|
||||
"ssi"
|
||||
"vote"
|
||||
];
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL+EZXYziiaynJX99EW8KesnmRTZMof3BoIs3mdEl8L3"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHL4M4HKjs4cjRAYRk9pmmI8U0R4+T/jQh6Fxp/i1Eoy"
|
||||
|
|
Loading…
Add table
Reference in a new issue