diff options
Diffstat (limited to 'app/backup/deploy/backup-daily.hcl')
-rw-r--r-- | app/backup/deploy/backup-daily.hcl | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/app/backup/deploy/backup-daily.hcl b/app/backup/deploy/backup-daily.hcl new file mode 100644 index 0000000..a1c2f89 --- /dev/null +++ b/app/backup/deploy/backup-daily.hcl @@ -0,0 +1,52 @@ +job "backup_daily" { + datacenters = ["dc1"] + type = "batch" + periodic { + cron = "@daily" + // Do not allow overlapping runs. + prohibit_overlap = true + } + + task "backup-dovecot" { + constraint { + attribute = "${attr.unique.hostname}" + operator = "=" + value = "digitale" + } + + driver = "docker" + + config { + image = "restic/restic:0.12.1" + entrypoint = [ "/bin/sh", "-c" ] + args = [ "restic backup /mail && restic forget --keep-within 1m1d --keep-within-weekly 3m --keep-within-monthly 1y ; restic prune --max-unused 50% --max-repack-size 2G ; restic check" ] + volumes = [ + "/mnt/ssd/mail:/mail" + ] + } + + + template { + data = <<EOH +AWS_ACCESS_KEY_ID={{ key "secrets/email/dovecot/backup_aws_access_key_id" }} +AWS_SECRET_ACCESS_KEY={{ key "secrets/email/dovecot/backup_aws_secret_access_key" }} +RESTIC_REPOSITORY={{ key "secrets/email/dovecot/backup_restic_repository" }} +RESTIC_PASSWORD={{ key "secrets/email/dovecot/backup_restic_password" }} +EOH + + destination = "secrets/env_vars" + env = true + } + + resources { + memory = 200 + } + + restart { + attempts = 2 + interval = "30m" + delay = "15s" + mode = "fail" + } + } +} |