2023-06-15 01:47:56 +00:00
|
|
|
/*
|
|
|
|
|
2023-09-17 19:51:08 +00:00
|
|
|
Name: https://half-life.fandom.com/wiki/GLaDOS
|
|
|
|
Why: Glados has a vast experence of testing and deploying.
|
|
|
|
Type: VM
|
|
|
|
Hardware: -
|
|
|
|
From: 2023
|
|
|
|
Role: Git server
|
|
|
|
Notes: Each user has roughly 20gb os storage
|
|
|
|
20 * 100 = 2000gb
|
2023-06-15 01:47:56 +00:00
|
|
|
*/
|
2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
nodes,
|
|
|
|
...
|
|
|
|
}: let
|
2023-06-15 01:47:56 +00:00
|
|
|
# name of the server, sets teh hostname and record for it
|
2023-09-17 19:51:08 +00:00
|
|
|
name = "glados";
|
|
|
|
ip_pub = "193.1.99.75";
|
|
|
|
hostname = "${name}.skynet.ie";
|
2024-05-30 13:11:45 +00:00
|
|
|
host = {
|
|
|
|
ip = ip_pub;
|
|
|
|
name = name;
|
2024-05-30 16:55:29 +00:00
|
|
|
hostname = hostname;
|
2024-05-30 13:11:45 +00:00
|
|
|
};
|
2023-06-15 01:47:56 +00:00
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
../applications/gitlab.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
deployment = {
|
|
|
|
targetHost = hostname;
|
|
|
|
targetPort = 22;
|
2023-09-30 22:18:14 +00:00
|
|
|
targetUser = null;
|
2023-06-15 13:30:18 +00:00
|
|
|
|
2023-09-17 19:51:08 +00:00
|
|
|
tags = ["active-gitlab"];
|
2023-06-15 01:47:56 +00:00
|
|
|
};
|
|
|
|
|
2024-05-30 16:55:29 +00:00
|
|
|
services.skynet = {
|
2024-05-30 13:11:45 +00:00
|
|
|
host = host;
|
2024-05-30 16:55:29 +00:00
|
|
|
backup.enable = true;
|
|
|
|
gitlab.enable = true;
|
2023-07-15 14:05:57 +00:00
|
|
|
};
|
2023-09-17 19:51:08 +00:00
|
|
|
}
|