From 1e396ca0ca91bc9d2645ddfc63a1576469491faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Diego=20Garc=C3=ADa?= Date: Wed, 18 Mar 2026 15:51:17 -0500 Subject: [PATCH] fix: integration tests runner in CI (#919) --- server/tests/docker-compose.integration.yml | 2 +- server/tests/integration/garage.toml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 server/tests/integration/garage.toml diff --git a/server/tests/docker-compose.integration.yml b/server/tests/docker-compose.integration.yml index 562953cd..752d4e47 100644 --- a/server/tests/docker-compose.integration.yml +++ b/server/tests/docker-compose.integration.yml @@ -93,7 +93,7 @@ services: garage: image: dxflrs/garage:v1.1.0 volumes: - - ../../data/garage.toml:/etc/garage.toml:ro + - ./integration/garage.toml:/etc/garage.toml:ro healthcheck: test: ["CMD", "/garage", "stats"] interval: 5s diff --git a/server/tests/integration/garage.toml b/server/tests/integration/garage.toml new file mode 100644 index 00000000..18f9c1e8 --- /dev/null +++ b/server/tests/integration/garage.toml @@ -0,0 +1,14 @@ +metadata_dir = "/var/lib/garage/meta" +data_dir = "/var/lib/garage/data" +replication_factor = 1 + +rpc_secret = "abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789" # gitleaks:allow +rpc_bind_addr = "[::]:3901" + +[s3_api] +api_bind_addr = "[::]:3900" +s3_region = "garage" +root_domain = ".s3.garage.localhost" + +[admin] +api_bind_addr = "[::]:3903"