From 24777badf7f6ff89ee6c7764a1baac2587b69188 Mon Sep 17 00:00:00 2001 From: Denis Kirillov Date: Thu, 8 Aug 2024 10:46:59 +0300 Subject: [PATCH] Update s3-gw https://git.frostfs.info/TrueCloudLab/frostfs-s3-gw/issues/451 * Don't skip [Next]PartNumberMarker in ListParts response * Support Location in CompleteMultipart response Signed-off-by: Denis Kirillov --- .env | 2 +- Dockerfile | 2 +- Dockerfile.custom | 2 +- bin/init-aio.sh | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.env b/.env index d6a68f3..20c855f 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ FROSTFS_HUB_IMAGE=truecloudlab/frostfs AIO_IMAGE=truecloudlab/frostfs-aio -AIO_VERSION=1.5.0 +AIO_VERSION=1.5.0-dev.1 diff --git a/Dockerfile b/Dockerfile index 8f9d19f..3d38fb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG NEOGO_HUB_IMAGE=nspccdev/neo-go ARG FROSTFS_CORE_TAG=0.38.6 ARG FROSTFS_HTTP_GATE_TAG=0.29.0 -ARG FROSTFS_S3_GATE_TAG=0.29.0 +ARG FROSTFS_S3_GATE_TAG=0.29.3-2-gff7f963f ARG NEOGO_TAG=0.104.0 FROM ${NEOGO_HUB_IMAGE}:${NEOGO_TAG} as neo-go diff --git a/Dockerfile.custom b/Dockerfile.custom index d0f4fd2..9efbd15 100644 --- a/Dockerfile.custom +++ b/Dockerfile.custom @@ -3,7 +3,7 @@ ARG NEOGO_HUB_IMAGE=nspccdev/neo-go ARG FROSTFS_CORE_TAG=0.38.6 ARG FROSTFS_HTTP_GATE_TAG=0.29.0 -ARG FROSTFS_S3_GATE_TAG=0.29.0 +ARG FROSTFS_S3_GATE_TAG=0.29.3-2-gff7f963f ARG NEOGO_TAG=0.104.0 FROM ${NEOGO_HUB_IMAGE}:${NEOGO_TAG} as neo-go diff --git a/bin/init-aio.sh b/bin/init-aio.sh index d38a3c2..feaead4 100755 --- a/bin/init-aio.sh +++ b/bin/init-aio.sh @@ -14,7 +14,7 @@ die() { runBlockchain() { stage "Starting the blockchain" - /usr/bin/neo-go node --config-path /config --privnet & + /usr/bin/neo-go node --config-path /config --privnet >dev/null 2>&1 & while [[ "$(curl -s -o /dev/null -w %{http_code} localhost:30333)" != "422" ]]; do @@ -37,7 +37,7 @@ configure() { runServices() { stage "Running services" - /usr/bin/frostfs-ir --config /config/config-ir.yaml & + /usr/bin/frostfs-ir --config /config/config-ir.yaml >/dev/null 2>&1 & while [[ -z "$(/usr/bin/frostfs-cli control ir healthcheck --endpoint localhost:16512 -c /config/cli-cfg-ir.yaml | grep 'Health status: READY')" ]]; do @@ -45,7 +45,7 @@ runServices() { done set -m - /usr/bin/frostfs-node --config /config/config-sn.yaml & + /usr/bin/frostfs-node --config /config/config-sn.yaml >/dev/null 2>&1 & while [[ -z "$(/usr/bin/frostfs-cli control healthcheck --endpoint localhost:16513 -c /config/cli-cfg-sn.yaml | grep 'Health status: READY')" ]]; do