frostfs-dev-env/services/ir/healthcheck.sh
Alex Vanin 140734d457 [#106] service/ir: Add healthcheck
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
2021-06-30 22:31:29 +03:00

5 lines
219 B
Bash
Executable file

#!/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