53 lines
No EOL
933 B
Nix
53 lines
No EOL
933 B
Nix
/*
|
|
|
|
Name: https://theportalwiki.com/wiki/Wheatley
|
|
Why: Whereever GLaDOS is Wheatly is not too far away
|
|
Type: VM
|
|
Hardware: -
|
|
From: 2023
|
|
Role: Gitlab Runner
|
|
Notes:
|
|
|
|
*/
|
|
|
|
{ pkgs, lib, nodes, ... }:
|
|
let
|
|
# name of the server, sets teh hostname and record for it
|
|
name = "wheatly";
|
|
ip_pub = "193.1.99.78";
|
|
ip_priv = "172.20.20.7";
|
|
hostname = "${name}.skynet.ie";
|
|
|
|
in {
|
|
imports = [
|
|
../applications/gitlab_runner.nix
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = hostname;
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
|
|
tags = [ "active" ];
|
|
};
|
|
|
|
|
|
skynet_dns.records = {
|
|
external = [
|
|
"${name} A ${ip_pub}"
|
|
];
|
|
reverse = [
|
|
"${builtins.substring 9 3 ip_pub} IN PTR ${hostname}."
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.gitlab-runner
|
|
];
|
|
|
|
services.skynet_gitlab_runner = {
|
|
enable = true;
|
|
runner.name = "runner01";
|
|
};
|
|
|
|
} |