forked from Deuxfleurs/nixcfg
Upgrade to garage v0.8.0-rc2
This commit is contained in:
parent
7df8162913
commit
eac950c47f
3 changed files with 79 additions and 17 deletions
|
@ -2,6 +2,7 @@ block_size = 1048576
|
||||||
|
|
||||||
metadata_dir = "/meta"
|
metadata_dir = "/meta"
|
||||||
data_dir = "/data"
|
data_dir = "/data"
|
||||||
|
db_engine = "lmdb"
|
||||||
|
|
||||||
replication_mode = "3"
|
replication_mode = "3"
|
||||||
|
|
||||||
|
@ -9,14 +10,22 @@ rpc_bind_addr = "[{{ env "meta.public_ipv6" }}]:3901"
|
||||||
rpc_public_addr = "[{{ env "meta.public_ipv6" }}]:3901"
|
rpc_public_addr = "[{{ env "meta.public_ipv6" }}]:3901"
|
||||||
rpc_secret = "{{ key "secrets/garage/rpc_secret" | trimSpace }}"
|
rpc_secret = "{{ key "secrets/garage/rpc_secret" | trimSpace }}"
|
||||||
|
|
||||||
sled_cache_capacity = 536870912
|
[consul_discovery]
|
||||||
sled_sync_interval_ms = 10000
|
consul_http_addr = "https://consul.service.prod.consul:8501"
|
||||||
|
service_name = "garage-prod-discovery"
|
||||||
|
ca_cert = "/etc/garage/consul-ca.crt"
|
||||||
|
client_cert = "/etc/garage/consul-client.crt"
|
||||||
|
client_key = "/etc/garage/consul-client.key"
|
||||||
|
tls_skip_verify = true
|
||||||
|
|
||||||
[s3_api]
|
[s3_api]
|
||||||
s3_region = "garage"
|
s3_region = "garage"
|
||||||
api_bind_addr = "[::]:3900"
|
api_bind_addr = "[::]:3900"
|
||||||
root_domain = ".garage.deuxfleurs.fr"
|
root_domain = ".garage.deuxfleurs.fr"
|
||||||
|
|
||||||
|
[k2v_api]
|
||||||
|
api_bind_addr = "[::]:3904"
|
||||||
|
|
||||||
[s3_web]
|
[s3_web]
|
||||||
bind_addr = "[::]:3902"
|
bind_addr = "[::]:3902"
|
||||||
root_domain = ".web.deuxfleurs.fr"
|
root_domain = ".web.deuxfleurs.fr"
|
||||||
|
|
|
@ -26,7 +26,7 @@ job "garage-light" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
config {
|
config {
|
||||||
advertise_ipv6_address = true
|
advertise_ipv6_address = true
|
||||||
image = "dxflrs/amd64_garage:v0.7.1"
|
image = "dxflrs/garage:v0.8-rc2"
|
||||||
command = "/garage"
|
command = "/garage"
|
||||||
args = [ "server" ]
|
args = [ "server" ]
|
||||||
network_mode = "host"
|
network_mode = "host"
|
||||||
|
@ -34,6 +34,7 @@ job "garage-light" {
|
||||||
"/mnt/storage/garage/data:/data",
|
"/mnt/storage/garage/data:/data",
|
||||||
"/mnt/ssd/garage/meta:/meta",
|
"/mnt/ssd/garage/meta:/meta",
|
||||||
"secrets/garage.toml:/etc/garage.toml",
|
"secrets/garage.toml:/etc/garage.toml",
|
||||||
|
"secrets:/etc/garage",
|
||||||
]
|
]
|
||||||
logging {
|
logging {
|
||||||
type = "journald"
|
type = "journald"
|
||||||
|
@ -45,12 +46,26 @@ job "garage-light" {
|
||||||
destination = "secrets/garage.toml"
|
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 {
|
resources {
|
||||||
memory = 1000
|
memory = 1000
|
||||||
cpu = 1000
|
cpu = 1000
|
||||||
}
|
}
|
||||||
|
|
||||||
kill_signal = "SIGINT"
|
|
||||||
kill_timeout = "20s"
|
kill_timeout = "20s"
|
||||||
|
|
||||||
service {
|
service {
|
||||||
|
|
|
@ -14,6 +14,7 @@ job "garage" {
|
||||||
port "rpc" { static = 3901 }
|
port "rpc" { static = 3901 }
|
||||||
port "web" { static = 3902 }
|
port "web" { static = 3902 }
|
||||||
port "admin" { static = 3903 }
|
port "admin" { static = 3903 }
|
||||||
|
port "k2v" { static = 3904 }
|
||||||
}
|
}
|
||||||
|
|
||||||
update {
|
update {
|
||||||
|
@ -26,7 +27,7 @@ job "garage" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
config {
|
config {
|
||||||
advertise_ipv6_address = true
|
advertise_ipv6_address = true
|
||||||
image = "dxflrs/amd64_garage:v0.7.1"
|
image = "dxflrs/garage:v0.8-rc2"
|
||||||
command = "/garage"
|
command = "/garage"
|
||||||
args = [ "server" ]
|
args = [ "server" ]
|
||||||
network_mode = "host"
|
network_mode = "host"
|
||||||
|
@ -34,6 +35,7 @@ job "garage" {
|
||||||
"/mnt/storage/garage/data:/data",
|
"/mnt/storage/garage/data:/data",
|
||||||
"/mnt/ssd/garage/meta:/meta",
|
"/mnt/ssd/garage/meta:/meta",
|
||||||
"secrets/garage.toml:/etc/garage.toml",
|
"secrets/garage.toml:/etc/garage.toml",
|
||||||
|
"secrets:/etc/garage",
|
||||||
]
|
]
|
||||||
logging {
|
logging {
|
||||||
type = "journald"
|
type = "journald"
|
||||||
|
@ -45,12 +47,26 @@ job "garage" {
|
||||||
destination = "secrets/garage.toml"
|
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 {
|
resources {
|
||||||
memory = 1000
|
memory = 1000
|
||||||
cpu = 1000
|
cpu = 1000
|
||||||
}
|
}
|
||||||
|
|
||||||
kill_signal = "SIGINT"
|
|
||||||
kill_timeout = "20s"
|
kill_timeout = "20s"
|
||||||
|
|
||||||
service {
|
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 {
|
restart {
|
||||||
interval = "30m"
|
interval = "30m"
|
||||||
attempts = 10
|
attempts = 10
|
||||||
|
|
Loading…
Reference in a new issue