[#135] .env: update neofs-node version
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
ddbbe20517
commit
a7feea730a
3 changed files with 11 additions and 9 deletions
6
.env
6
.env
|
@ -11,11 +11,11 @@ NEOGO_VERSION=0.97.3
|
|||
MORPH_CHAIN_URL="https://github.com/nspcc-dev/neofs-contract/releases/download/v0.12.1/devenv_sidechain.gz"
|
||||
|
||||
# NeoFS InnerRing nodes
|
||||
IR_VERSION=0.25.1
|
||||
IR_VERSION=0.26.0
|
||||
IR_IMAGE=nspccdev/neofs-ir
|
||||
|
||||
# NeoFS Storage nodes
|
||||
NODE_VERSION=0.25.1
|
||||
NODE_VERSION=0.26.0
|
||||
NODE_IMAGE=nspccdev/neofs-storage
|
||||
|
||||
# HTTP Gate
|
||||
|
@ -31,5 +31,5 @@ LOCODE_DB_URL=https://github.com/nspcc-dev/neofs-locode-db/releases/download/v0.
|
|||
#LOCODE_DB_PATH=/path/to/locode_db
|
||||
|
||||
# NeoFS CLI binary
|
||||
NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.25.0/neofs-cli-amd64.tar.gz
|
||||
NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.26.0/neofs-cli-amd64.tar.gz
|
||||
#NEOFS_CLI_PATH=/path/to/neofs-cli-binary
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
EXPECTED="Health status: READY"
|
||||
GOT=`/neofs-cli -r $NEOFS_IR_CONTROL_GRPC_ENDPOINT --binary-key /wallet01.key control healthcheck --ir | grep Health`
|
||||
if [ "$EXPECTED" = "$GOT" ]; then exit 0; else exit 1; fi
|
||||
/neofs-cli control healthcheck \
|
||||
--endpoint "$NEOFS_IR_CONTROL_GRPC_ENDPOINT" \
|
||||
--binary-key /wallet01.key --ir |
|
||||
grep "Health status: READY"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
EXPECTED="Health status: READY"
|
||||
GOT=`/neofs-cli -r $NEOFS_CONTROL_GRPC_ENDPOINT --binary-key $NEOFS_NODE_KEY control healthcheck | grep "Health"`
|
||||
if [ "$EXPECTED" = "$GOT" ]; then exit 0; else exit 1; fi
|
||||
/neofs-cli control healthcheck \
|
||||
--endpoint "$NEOFS_CONTROL_GRPC_ENDPOINT" \
|
||||
--binary-key "$NEOFS_NODE_KEY" |
|
||||
grep "Health status: READY"
|
||||
|
|
Loading…
Reference in a new issue