depot/cluster/services/object-storage/default.nix
2023-09-03 01:11:49 +02:00

14 lines
278 B
Nix

{ depot, ... }:
{
services.object-storage = {
nodes.host = [ "VEGAS" ];
nixos.host = ./host.nix;
};
monitoring.blackbox.targets.object-storage = {
address = "https://object-storage.${depot.lib.meta.domain}/minio/health/live";
module = "https2xx";
};
}