diff options
author | Alex Auvolat <alex@adnab.me> | 2022-02-17 15:06:09 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-02-17 15:06:09 +0100 |
commit | 65ca536b3b3bf92115d0fd2618555ea056dc6b6f (patch) | |
tree | 6c5804fa5f0685809b0b9d698a1aad53aa5bdd1c /app/garage-staging/deploy | |
parent | 689870ec00147bced3c7105daf617b0fc1e3c5eb (diff) | |
download | nixcfg-65ca536b3b3bf92115d0fd2618555ea056dc6b6f.tar.gz nixcfg-65ca536b3b3bf92115d0fd2618555ea056dc6b6f.zip |
Add telemetry to garage staging
Diffstat (limited to 'app/garage-staging/deploy')
-rw-r--r-- | app/garage-staging/deploy/garage.hcl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/garage-staging/deploy/garage.hcl b/app/garage-staging/deploy/garage.hcl index 3412a4a..44aa0c9 100644 --- a/app/garage-staging/deploy/garage.hcl +++ b/app/garage-staging/deploy/garage.hcl @@ -15,6 +15,7 @@ job "garage-staging" { port "s3" { static = 3990 } port "rpc" { static = 3991 } port "web" { static = 3992 } + port "admin" { static = 3909 } } update { @@ -27,7 +28,7 @@ job "garage-staging" { driver = "docker" config { - image = "dxflrs/amd64_garage:v0.6.0-rc1" + image = "dxflrs/amd64_garage:37011a2f6ec680e4b0bbc96fa7fa86d3738d9de8" command = "/garage" args = [ "server" ] network_mode = "host" @@ -120,6 +121,15 @@ job "garage-staging" { } } + service { + tags = [ + "garage-staging-admin", + ] + port = 3909 + address_mode = "driver" + name = "garage-staging-admin" + } + restart { interval = "30m" attempts = 10 |