diff options
-rw-r--r-- | cluster/staging/app/garage/deploy/garage.hcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cluster/staging/app/garage/deploy/garage.hcl b/cluster/staging/app/garage/deploy/garage.hcl index f46d1a2..d87167c 100644 --- a/cluster/staging/app/garage/deploy/garage.hcl +++ b/cluster/staging/app/garage/deploy/garage.hcl @@ -26,7 +26,8 @@ job "garage-staging" { packages = [ "#bash", # so that we can enter a shell inside container "#coreutils", - "git+https://git.deuxfleurs.fr/Deuxfleurs/garage.git?ref=main&rev=eab54b37981073651712a15334b60b2c409f2576", + # garage v0.9.2-rc1 as of 2024-02-29 + "git+https://git.deuxfleurs.fr/Deuxfleurs/garage.git?ref=main&rev=b8c7a560ef339142607106649f8cef88def82fb8" ] command = "garage" args = [ "server" ] @@ -37,7 +38,7 @@ job "garage-staging" { } env = { - RUST_LOG = "garage=debug", + RUST_LOG = "garage=info,garage_api=debug", } # files currently owned by root, we don't want to chown everything |