variable "flake_ref" { type = string } variable "flake_sha" { type = string } job "email" { datacenters = [ "homelab-1" ] type = "service" constraint { attribute = "${attr.unique.hostname}" value = "blowhole" } group "getmail" { count = 1 volume "mail-configuration" { type = "csi" source = "mail-configuration" read_only = false attachment_mode = "file-system" access_mode = "multi-node-multi-writer" } restart { attempts = 5 delay = "5s" } network { mode = "bridge" } service { name = "getmail" port = "666" connect { sidecar_service { proxy { upstreams { destination_name = "dovecot-lmtp" local_bind_port = 24 datacenter = "homelab-1" } } } } } task "app" { driver = "docker" volume_mount { volume = "mail-configuration" destination = "/mail-configuration" read_only = false } config { nix_flake_ref = "${var.flake_ref}#nixngSystems.getmail.config.system.build.toplevel" nix_flake_sha = var.flake_sha entrypoint = [ "init" ] } vault { policies = ["getmail-policy"] } template { data = <