From 7d309a0d3f29edc7696cc4d07ba2c20268b9a1e4 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Thu, 24 Sep 2026 12:20:21 -0700 Subject: [PATCH] Infra: Bump RustFS to 1.0.0 RustFS 1.0.0 is the stable release and includes the vhost domain port matching fix, so RUSTFS_SERVER_DOMAINS no longer needs the port. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- dev/docker-compose-integration.yml | 6 +++--- dev/docker-compose.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/docker-compose-integration.yml b/dev/docker-compose-integration.yml index 46c1d0f03f..9653cf5e6c 100644 --- a/dev/docker-compose-integration.yml +++ b/dev/docker-compose-integration.yml @@ -62,7 +62,7 @@ services: - CATALOG_S3_ENDPOINT=http://object-store:9000 - CATALOG_JDBC_STRICT__MODE=true object-store: - image: rustfs/rustfs:1.0.0-rc.5 + image: rustfs/rustfs:1.0.0 container_name: pyiceberg-object-store networks: iceberg_net: @@ -79,8 +79,8 @@ services: - RUSTFS_CONSOLE_ENABLE=true - RUSTFS_CONSOLE_ADDRESS=:9001 # Resolves virtual-hosted-style `warehouse.object-store` to the warehouse - # bucket. The port is required until rustfs/rustfs#7051 ships. - - RUSTFS_SERVER_DOMAINS=object-store:9000 + # bucket. + - RUSTFS_SERVER_DOMAINS=object-store healthcheck: test: ["CMD-SHELL", "curl --fail http://127.0.0.1:9000/health"] interval: 5s diff --git a/dev/docker-compose.yml b/dev/docker-compose.yml index dfabbd95f0..169a5d22cd 100644 --- a/dev/docker-compose.yml +++ b/dev/docker-compose.yml @@ -17,7 +17,7 @@ services: object-store: - image: rustfs/rustfs:1.0.0-rc.5 + image: rustfs/rustfs:1.0.0 container_name: pyiceberg-object-store ports: - 9001:9001