dotfiles/terranix/containers/ingress-toothpick/default.nix
magic_rb ba6c660326
Move ingress blowhole to new drives
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-01-11 10:22:05 +01:00

26 lines
772 B
Nix

{ elib, secret, vars, config', ... }:
let
inherit (elib)
nfsVolume
nomadJob;
in
{
resource."nomad_volume"."ingress-letsencrypt" = nfsVolume {
volume_name = "ingress-letsencrypt";
access_mode = "single-node-writer";
server = secret.network.ips.blowhole.ip or "";
share = "/mnt/kyle/infrastructure/ingress-toothpick/letsencrypt";
mount_flags = [ "nolock" "hard" ];
};
resource."nomad_job"."ingress" = nomadJob {
jobspec = ./job.hcl;
vars = {
flake_ref = "${vars.flake_host}?rev=${vars.flake_rev}&ref=${vars.flake_ref}";
flake_sha = vars.flake_sha;
store_path = config'.flake.nixngConfigurations.ingressToothpick.config.system.build.toplevel;
upstreams = "\${file(\"${./upstreams.conf}\")}";
};
};
}