2023-05-16 21:23:04 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
Name: https://en.wikipedia.org/wiki/KITT
|
|
|
|
Why: Kitt used to have this role before (as well as email and dns)
|
|
|
|
Type: VM
|
|
|
|
Hardware: -
|
|
|
|
From: 2023
|
|
|
|
Role: LDAP Server
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2023-05-19 17:21:33 +00:00
|
|
|
{ pkgs, lib, nodes, ... }:
|
2023-05-16 21:23:04 +00:00
|
|
|
let
|
|
|
|
# name of the server, sets teh hostname and record for it
|
|
|
|
name = "kitt";
|
|
|
|
ip_pub = "193.1.99.74";
|
|
|
|
ip_priv = "172.20.20.5";
|
|
|
|
hostname = "${name}.skynet.ie";
|
2023-05-19 17:21:33 +00:00
|
|
|
#hostname = ip_pub;
|
2023-05-16 21:23:04 +00:00
|
|
|
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
../applications/ldap.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
deployment = {
|
|
|
|
targetHost = hostname;
|
|
|
|
targetPort = 22;
|
|
|
|
targetUser = "root";
|
2023-06-15 13:30:18 +00:00
|
|
|
|
2023-07-26 22:53:26 +00:00
|
|
|
tags = [ "active-core" ];
|
2023-05-16 21:23:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# add this server to dns
|
2023-07-16 00:53:21 +00:00
|
|
|
skynet_dns.records = [
|
|
|
|
{record=name; r_type="A"; value=ip_pub; server=true;}
|
|
|
|
{record=ip_pub; r_type="PTR"; value=hostname;}
|
|
|
|
];
|
2023-05-16 21:23:04 +00:00
|
|
|
|
2023-07-15 14:05:57 +00:00
|
|
|
services.skynet_backup = {
|
|
|
|
host = {
|
|
|
|
ip = ip_pub;
|
|
|
|
name = name;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-05-16 21:23:04 +00:00
|
|
|
services.skynet_ldap = {
|
|
|
|
enable = true;
|
|
|
|
host = {
|
|
|
|
ip = ip_pub;
|
|
|
|
name = name;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|