depot/cluster/services/search/default.nix

14 lines
244 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, ... }:
{
services.search = {
nodes.host = [ "VEGAS" ];
nixos.host = ./host.nix;
};
monitoring.blackbox.targets.search = {
2023-08-31 01:55:45 +03:00
address = "https://search.${depot.lib.meta.domain}/healthz";
module = "https2xx";
};
}