diff options
author | Baptiste Jonglez <git@bitsofnetworks.org> | 2023-05-03 08:53:59 +0200 |
---|---|---|
committer | Baptiste Jonglez <git@bitsofnetworks.org> | 2023-05-03 08:53:59 +0200 |
commit | e23b52346742ebd9cb039e3af705ba150492cd1e (patch) | |
tree | 5cfc5ddf4a201451ff05dc518718397808db3bff /cluster/prod/app/postgres/deploy | |
parent | 3befdea20669f5b6e09cadb20f91d33a3cded459 (diff) | |
download | nixcfg-e23b52346742ebd9cb039e3af705ba150492cd1e.tar.gz nixcfg-e23b52346742ebd9cb039e3af705ba150492cd1e.zip |
Add infinite restart policy for postgresql
Diffstat (limited to 'cluster/prod/app/postgres/deploy')
-rw-r--r-- | cluster/prod/app/postgres/deploy/postgres.hcl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cluster/prod/app/postgres/deploy/postgres.hcl b/cluster/prod/app/postgres/deploy/postgres.hcl index 9bad079..2aa2d07 100644 --- a/cluster/prod/app/postgres/deploy/postgres.hcl +++ b/cluster/prod/app/postgres/deploy/postgres.hcl @@ -16,6 +16,13 @@ job "postgres14" { port "psql_port" { static = 5433 } } + restart { + interval = "10m" + attempts = 10 + delay = "15s" + mode = "delay" + } + task "sentinel" { driver = "docker" |