Update s3-gw

TrueCloudLab/frostfs-s3-gw#451

* Don't skip [Next]PartNumberMarker in ListParts response
* Support Location in CompleteMultipart response

Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
This commit is contained in:
Denis Kirillov 2024-08-08 10:46:59 +03:00
parent f0c20be1b9
commit 24777badf7
4 changed files with 6 additions and 6 deletions

2
.env
View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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