2022-08-24 15:31:08 +00:00
|
|
|
block_size = 1048576
|
|
|
|
|
|
|
|
metadata_dir = "/meta"
|
|
|
|
data_dir = "/data"
|
2022-11-16 10:56:57 +00:00
|
|
|
db_engine = "lmdb"
|
2022-08-24 15:31:08 +00:00
|
|
|
|
|
|
|
replication_mode = "3"
|
|
|
|
|
2023-12-19 08:27:40 +00:00
|
|
|
# IPv6 config using the ipv6 address statically defined in Nomad's node metadata
|
|
|
|
# make sure to put back double { and } if re-enabling this
|
|
|
|
#rpc_bind_addr = "[{ env "meta.public_ipv6" }]:3901"
|
|
|
|
#rpc_public_addr = "[{ env "meta.public_ipv6" }]:3901"
|
|
|
|
|
|
|
|
# IPv6 config using the ipv6 address dynamically detected from diplonat
|
|
|
|
{{ with $a := env "attr.unique.hostname" | printf "diplonat/autodiscovery/ipv6/%s" | key | parseJSON }}
|
|
|
|
rpc_bind_addr = "[{{ $a.address }}]:3901"
|
|
|
|
rpc_public_addr = "[{{ $a.address }}]:3901"
|
|
|
|
{{ end }}
|
|
|
|
|
2022-08-24 15:31:08 +00:00
|
|
|
rpc_secret = "{{ key "secrets/garage/rpc_secret" | trimSpace }}"
|
|
|
|
|
2022-11-16 10:56:57 +00:00
|
|
|
[consul_discovery]
|
|
|
|
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
|
2022-08-24 15:31:08 +00:00
|
|
|
|
|
|
|
[s3_api]
|
|
|
|
s3_region = "garage"
|
|
|
|
api_bind_addr = "[::]:3900"
|
|
|
|
root_domain = ".garage.deuxfleurs.fr"
|
|
|
|
|
2022-11-16 10:56:57 +00:00
|
|
|
[k2v_api]
|
|
|
|
api_bind_addr = "[::]:3904"
|
|
|
|
|
2022-08-24 15:31:08 +00:00
|
|
|
[s3_web]
|
|
|
|
bind_addr = "[::]:3902"
|
|
|
|
root_domain = ".web.deuxfleurs.fr"
|
|
|
|
|
|
|
|
[admin]
|
2022-08-25 11:59:40 +00:00
|
|
|
api_bind_addr = "[::]:3903"
|
|
|
|
metrics_token = "{{ key "secrets/garage/metrics_token" | trimSpace }}"
|
|
|
|
admin_token = "{{ key "secrets/garage/admin_token" | trimSpace }}"
|