homelab/nomad-job/backup-postgress.nomad
vincent 5939ff8057
All checks were successful
continuous-integration/drone/push Build is passing
perfs: increase memory for postgres backup
2024-01-01 11:44:10 +01:00

54 lines
1.0 KiB
HCL

job "backup-postgress" {
datacenters = ["homelab"]
priority = 50
type = "batch"
meta {
forcedeploy = "0"
}
constraint {
attribute = "${attr.cpu.arch}"
value = "amd64"
}
periodic {
crons = ["0 3 * * *"]
prohibit_overlap = true
}
group "backup-postgress" {
network {
mode = "host"
}
vault {
policies = ["dump"]
}
task "backup" {
driver = "docker"
service {
name = "backup-postgress"
}
config {
image = "ducampsv/docker-backup-postgres:latest"
volumes = [
"/mnt/diskstation/git/backup/postgres:/backup"
]
}
template {
data = <<EOH
{{ with secret "secrets/data/database/dump"}}
PGUSER = "dump"
PGPASSWORD = "{{ .Data.data.password }}"
PGHOST = "active.db.service.consul"
{{end}}
EOH
destination = "secrets/secrets.env"
env = true
}
resources {
memory = 125
}
}
}
}