Files
example-voting-app/healthchecks/redis.sh
2021-01-29 16:47:31 -05:00

11 lines
159 B
Bash
Executable File

#!/bin/sh
set -eo pipefail
host="$(hostname -i || echo '127.0.0.1')"
if ping="$(redis-cli -h "$host" ping)" && [ "$ping" = 'PONG' ]; then
exit 0
fi
exit 1