diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-26 14:14:41 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-26 16:14:29 +0200 |
commit | 7fc001a92f2587a8d725d23b53b10e4df5fed7f2 (patch) | |
tree | ef42d63ce5945f68c5109e3eb2258b3a281ff6f0 /app/garage/config/garage.toml | |
parent | c51b654dd6b545137e61bafd2054cba60b0f0906 (diff) | |
download | infrastructure-7fc001a92f2587a8d725d23b53b10e4df5fed7f2.tar.gz infrastructure-7fc001a92f2587a8d725d23b53b10e4df5fed7f2.zip |
Migration to garage 0.4garage04
Diffstat (limited to 'app/garage/config/garage.toml')
-rw-r--r-- | app/garage/config/garage.toml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/app/garage/config/garage.toml b/app/garage/config/garage.toml index 481312d..e637cfb 100644 --- a/app/garage/config/garage.toml +++ b/app/garage/config/garage.toml @@ -1,24 +1,18 @@ block_size = 1048576 -metadata_dir = "/garage/meta" -data_dir = "/garage/data" +metadata_dir = "/meta" +data_dir = "/data" replication_mode = "3" rpc_bind_addr = "[::]:3901" +rpc_secret = "{{ key "secrets/garage/rpc_secret" | trimSpace }}" consul_host = "consul.service.2.cluster.deuxfleurs.fr:8500" -consul_service_name = "garage-rpc" +consul_service_name = "garage-rpc-self-advertised" bootstrap_peers = [] -max_concurrent_rpc_requests = 12 - -[rpc_tls] -ca_cert = "/garage/garage-ca.crt" -node_cert = "/garage/garage.crt" -node_key = "/garage/garage.key" - [s3_api] s3_region = "garage" api_bind_addr = "[::]:3900" |