infrastructure/meta/nodes.nix

77 lines
1.3 KiB
Nix
Raw Normal View History

###
# File specifying all the deployement options for the nodes administrated by the dgnum.
#
# Node metadata template is:
#
# NODE_NAME = {
# adminGroups = []; # List of groups that have root access
# admins = []; # List of individuals that have root access
# deployment = {}; # Colmena deployment options
# nixpkgs = "unstable" or "22.11"; # nixpkgs version
# }
/*
Liste des différents sites :
- dmi01 -> VM du NPSPI
- par01 -> Salle serveur sous le pavillon Pasteur
- par02 -> Local DGNum Jourdan
- par03 -> VM de Luj
2024-02-23 10:50:50 +01:00
*/
{
web01 = {
2024-02-23 10:50:50 +01:00
site = "dmi01";
2023-12-06 16:55:51 +01:00
deployment.tags = [ "web" ];
2023-05-22 15:06:11 +02:00
stateVersion = "23.05";
2023-05-22 15:06:11 +02:00
};
2023-07-18 17:00:31 +02:00
compute01 = {
2024-02-23 10:50:50 +01:00
site = "par01";
stateVersion = "23.05";
2023-07-18 17:00:31 +02:00
};
2024-02-20 17:47:50 +01:00
geo01 = {
2024-02-23 10:50:50 +01:00
site = "par02";
2024-02-20 17:57:38 +01:00
deployment.tags = [ "geo" ];
stateVersion = "24.05";
nixpkgs = "unstable";
};
geo02 = {
2024-02-23 10:50:50 +01:00
site = "par02";
2024-02-20 17:57:38 +01:00
deployment.tags = [ "geo" ];
2024-02-20 17:47:50 +01:00
stateVersion = "24.05";
nixpkgs = "unstable";
};
2023-07-18 17:00:31 +02:00
storage01 = {
2024-02-23 10:50:50 +01:00
site = "par01";
stateVersion = "23.11";
2023-07-18 17:00:31 +02:00
};
2024-01-10 15:00:18 +01:00
vault01 = {
2024-02-23 10:50:50 +01:00
site = "par02";
deployment.targetHost = "vault01.dgnum";
2024-02-23 10:50:50 +01:00
2024-01-10 15:00:18 +01:00
stateVersion = "23.11";
nixpkgs = "unstable";
2024-01-10 15:00:18 +01:00
};
2024-01-11 12:45:01 +01:00
web02 = {
2024-02-23 10:50:50 +01:00
site = "dmi01";
2024-01-11 12:45:01 +01:00
stateVersion = "24.05";
nixpkgs = "unstable";
};
2024-02-21 01:44:48 +01:00
rescue01 = {
2024-02-23 10:50:50 +01:00
site = "par03";
2024-02-21 01:44:48 +01:00
stateVersion = "23.11";
};
2023-05-22 15:06:11 +02:00
}