forked from TrueCloudLab/frostfs-aio
Compare commits
1 commit
master
...
master-log
Author | SHA1 | Date | |
---|---|---|---|
0d48ab6eaa |
5 changed files with 12 additions and 6 deletions
2
.env
2
.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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue