Add a restart policy
This commit is contained in:
parent
2d30e1a9c7
commit
784efbcc9b
1 changed files with 9 additions and 2 deletions
|
@ -64,8 +64,8 @@ job "garage" {
|
|||
cpu = 1000
|
||||
}
|
||||
|
||||
kill_signal = "SIGINT"
|
||||
kill_timeout = "20s"
|
||||
kill_signal = "SIGINT"
|
||||
kill_timeout = "20s"
|
||||
|
||||
service {
|
||||
tags = [
|
||||
|
@ -109,6 +109,13 @@ job "garage" {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
restart {
|
||||
interval = "30m"
|
||||
attempts = 10
|
||||
delay = "15s"
|
||||
mode = "delay"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue