depot/cluster/services/soda/default.nix

19 lines
377 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, ... }:
2023-06-06 00:18:18 +03:00
{
2024-07-20 23:13:47 +03:00
services.soda = {
nodes.host = [ "VEGAS" ];
nixos.host = ./host.nix;
};
2023-06-06 00:18:18 +03:00
monitoring.blackbox.targets.soda-machine = {
2023-08-31 01:55:45 +03:00
address = "soda.int.${depot.lib.meta.domain}:22";
2023-06-06 00:18:18 +03:00
module = "sshConnect";
};
2023-12-04 00:18:38 +02:00
dns.records = {
soda.target = [ depot.hours.VEGAS.interfaces.primary.addrPublic ];
"soda.int".target = [ "10.10.2.206" ];
};
2023-06-06 00:18:18 +03:00
}