upgrade garage to v1.99.1
This commit is contained in:
parent
40da5ccca2
commit
c5a0577cbf
1 changed files with 6 additions and 7 deletions
|
@ -3,11 +3,6 @@ job "garage" {
|
||||||
type = "system"
|
type = "system"
|
||||||
priority = 80
|
priority = 80
|
||||||
|
|
||||||
update {
|
|
||||||
max_parallel = 2
|
|
||||||
min_healthy_time = "60s"
|
|
||||||
}
|
|
||||||
|
|
||||||
group "garage" {
|
group "garage" {
|
||||||
network {
|
network {
|
||||||
port "s3" { static = 3900 }
|
port "s3" { static = 3900 }
|
||||||
|
@ -18,7 +13,11 @@ job "garage" {
|
||||||
}
|
}
|
||||||
|
|
||||||
update {
|
update {
|
||||||
max_parallel = 10
|
# When upgrading the service, stop and upgrade nodes one by one.
|
||||||
|
# This should allow performing minor upgrades without downtime.
|
||||||
|
# (A higher value for max_parallel would risk stopping nodes in different
|
||||||
|
# zones at the same time, which would make the cluster unavailable)
|
||||||
|
max_parallel = 1
|
||||||
min_healthy_time = "30s"
|
min_healthy_time = "30s"
|
||||||
healthy_deadline = "5m"
|
healthy_deadline = "5m"
|
||||||
}
|
}
|
||||||
|
@ -26,7 +25,7 @@ job "garage" {
|
||||||
task "server" {
|
task "server" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
config {
|
config {
|
||||||
image = "superboum/garage:v1.0.0-rc1-hotfix-red-ftr-wquorum"
|
image = "dxflrs/garage:v1.99.1-internal"
|
||||||
command = "/garage"
|
command = "/garage"
|
||||||
args = [ "server" ]
|
args = [ "server" ]
|
||||||
network_mode = "host"
|
network_mode = "host"
|
||||||
|
|
Loading…
Add table
Reference in a new issue