diff --git a/.env b/.env index d6a68f3..e7292b6 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-log.1 diff --git a/Dockerfile b/Dockerfile index 8f9d19f..55f519d 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-8-gcac644b2 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..05018ce 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-8-gcac644b2 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 diff --git a/s3-gw/s3-gw-config.yaml b/s3-gw/s3-gw-config.yaml index f498144..c533851 100644 --- a/s3-gw/s3-gw-config.yaml +++ b/s3-gw/s3-gw-config.yaml @@ -75,3 +75,9 @@ frostfsid: kludge: use_default_xmlns: true + bypass_content_encoding_check_in_chunks: true + +http_logging: + enabled: true + max_body: 100 + log_response: true