forked from TrueCloudLab/frostfs-dev-env
1611844989
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
5 lines
215 B
Bash
Executable file
5 lines
215 B
Bash
Executable file
#!/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
|