adguardhome-sync/testdata/e2e/bin/show-sync-logs.sh
2022-10-07 07:32:20 +02:00

8 lines
227 B
Bash
Executable file

#!/bin/bash
set -e
echo Pod adguardhome-sync logs
kubectl logs adguardhome-sync
ERRORS=$(kubectl logs adguardhome-sync | grep Error | wc -l)
echo "Found ${ERRORS} error(s) in log";
if [[ "${ERRORS}" != "0" ]]; then exit 1; fi