aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/garage/deploy/garage.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'cluster/prod/app/garage/deploy/garage.hcl')
-rw-r--r--cluster/prod/app/garage/deploy/garage.hcl54
1 files changed, 46 insertions, 8 deletions
diff --git a/cluster/prod/app/garage/deploy/garage.hcl b/cluster/prod/app/garage/deploy/garage.hcl
index 79e4d59..7ef2aa7 100644
--- a/cluster/prod/app/garage/deploy/garage.hcl
+++ b/cluster/prod/app/garage/deploy/garage.hcl
@@ -1,5 +1,5 @@
job "garage" {
- datacenters = ["orion"]
+ datacenters = [ "orion" ]
type = "system"
priority = 80
@@ -14,19 +14,20 @@ job "garage" {
port "rpc" { static = 3901 }
port "web" { static = 3902 }
port "admin" { static = 3903 }
+ port "k2v" { static = 3904 }
}
- update {
- max_parallel = 1
- min_healthy_time = "30s"
- healthy_deadline = "5m"
- }
+ update {
+ max_parallel = 1
+ min_healthy_time = "30s"
+ healthy_deadline = "5m"
+ }
task "server" {
driver = "docker"
config {
advertise_ipv6_address = true
- image = "dxflrs/amd64_garage:v0.7.1"
+ image = "dxflrs/garage:v0.8-rc2"
command = "/garage"
args = [ "server" ]
network_mode = "host"
@@ -34,6 +35,7 @@ job "garage" {
"/mnt/storage/garage/data:/data",
"/mnt/ssd/garage/meta:/meta",
"secrets/garage.toml:/etc/garage.toml",
+ "secrets:/etc/garage",
]
logging {
type = "journald"
@@ -45,12 +47,26 @@ job "garage" {
destination = "secrets/garage.toml"
}
+ template {
+ data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
+ destination = "secrets/consul-ca.crt"
+ }
+
+ template {
+ data = "{{ key \"secrets/consul/consul-client.crt\" }}"
+ destination = "secrets/consul-client.crt"
+ }
+
+ template {
+ data = "{{ key \"secrets/consul/consul-client.key\" }}"
+ destination = "secrets/consul-client.key"
+ }
+
resources {
memory = 1000
cpu = 1000
}
- kill_signal = "SIGINT"
kill_timeout = "20s"
service {
@@ -120,6 +136,28 @@ job "garage" {
}
}
+ service {
+ tags = [
+ "garage_k2v",
+ "tricot k2v.deuxfleurs.fr",
+ ]
+ port = 3904
+ address_mode = "driver"
+ name = "garage-k2v"
+ check {
+ type = "tcp"
+ port = 3904
+ address_mode = "driver"
+ interval = "60s"
+ timeout = "5s"
+ check_restart {
+ limit = 3
+ grace = "90s"
+ ignore_warnings = false
+ }
+ }
+ }
+
restart {
interval = "30m"
attempts = 10