Constantin Gierczak--Galle
bb4a24f9e9
All checks were successful
Check meta / check_meta (pull_request) Successful in 16s
Check meta / check_dns (pull_request) Successful in 18s
build configuration / build_and_cache_compute01 (pull_request) Successful in 1m16s
build configuration / build_and_cache_geo01 (pull_request) Successful in 1m3s
build configuration / build_and_cache_rescue01 (pull_request) Successful in 1m9s
build configuration / build_and_cache_storage01 (pull_request) Successful in 1m15s
build configuration / build_and_cache_geo02 (pull_request) Successful in 1m1s
build configuration / build_and_cache_krz01 (pull_request) Successful in 1m54s
lint / check (pull_request) Successful in 22s
build configuration / build_and_cache_bridge01 (pull_request) Successful in 59s
build configuration / build_and_cache_vault01 (pull_request) Successful in 1m9s
build configuration / build_and_cache_web02 (pull_request) Successful in 1m9s
build configuration / build_and_cache_web01 (pull_request) Successful in 1m35s
Check meta / check_meta (push) Successful in 18s
Check meta / check_dns (push) Successful in 17s
build configuration / build_and_cache_compute01 (push) Successful in 1m36s
build configuration / build_and_cache_storage01 (push) Successful in 1m11s
build configuration / build_and_cache_rescue01 (push) Successful in 1m8s
build configuration / build_and_cache_krz01 (push) Successful in 2m1s
build configuration / build_and_cache_geo01 (push) Successful in 1m5s
build configuration / build_and_cache_geo02 (push) Successful in 1m9s
build configuration / build_and_cache_vault01 (push) Successful in 1m21s
build configuration / build_and_cache_web02 (push) Successful in 1m7s
lint / check (push) Successful in 24s
build configuration / build_and_cache_bridge01 (push) Successful in 1m6s
build configuration / build_and_cache_web01 (push) Successful in 1m41s
105 lines
1.6 KiB
Nix
105 lines
1.6 KiB
Nix
/*
|
|
To add a new member add an attribute to `members`
|
|
Then add the key to the required groups.
|
|
*/
|
|
|
|
{
|
|
members = {
|
|
catvayor = {
|
|
name = "Lubin Bailly";
|
|
email = "catvayor@dgnum.eu";
|
|
};
|
|
|
|
cst1 = {
|
|
name = "Constantin Gierczak--Galle";
|
|
email = "cst1@dgnum.eu";
|
|
};
|
|
|
|
ecoppens = {
|
|
name = "Elias Coppens";
|
|
email = "ecoppens@dgnum.eu";
|
|
};
|
|
|
|
jemagius = {
|
|
name = "Jean-Marc Gailis";
|
|
email = "jm@dgnum.eu";
|
|
};
|
|
|
|
luj = {
|
|
name = "Julien Malka";
|
|
email = "luj@dgnum.eu";
|
|
};
|
|
|
|
mdebray = {
|
|
name = "Maurice Debray";
|
|
email = "maurice.debray@dgnum.eu";
|
|
};
|
|
|
|
raito = {
|
|
name = "Ryan Lahfa";
|
|
email = "ryan@dgnum.eu";
|
|
};
|
|
|
|
thubrecht = {
|
|
name = "Tom Hubrecht";
|
|
email = "tom.hubrecht@dgnum.eu";
|
|
};
|
|
};
|
|
|
|
groups = {
|
|
# members of this group are root on all nodes
|
|
root = [
|
|
"thubrecht"
|
|
"raito"
|
|
"mdebray"
|
|
"luj"
|
|
];
|
|
|
|
# members of this group are root on the fai infrastructure
|
|
fai = [
|
|
"catvayor"
|
|
"ecoppens"
|
|
];
|
|
|
|
lab = [
|
|
"catvayor"
|
|
"cst1"
|
|
"ecoppens"
|
|
];
|
|
|
|
};
|
|
|
|
external = {
|
|
dns = [
|
|
"thubrecht"
|
|
"raito"
|
|
];
|
|
|
|
email = [ "raito" ];
|
|
|
|
irc = [ "raito" ];
|
|
};
|
|
|
|
services = {
|
|
# Démarches Normaliennes
|
|
ds-fr.admins = [
|
|
"thubrecht"
|
|
"jemagius"
|
|
];
|
|
|
|
# Cloud DGNum
|
|
nextcloud.admins = [
|
|
"thubrecht"
|
|
"raito"
|
|
];
|
|
|
|
# Netbox DGNum
|
|
netbox.adminGroups = [
|
|
"root"
|
|
"fai"
|
|
];
|
|
|
|
# Videos DGNum
|
|
peertube.admins = [ "thubrecht" ];
|
|
};
|
|
}
|