adguardhome-sync/testdata/e2e/bin/wait-for-agh-pods.sh
2022-10-07 07:32:20 +02:00

7 lines
190 B
Bash
Executable file

#!/bin/bash
set -e
echo "wait for adguardhome pods"
for pod in $(kubectl get pods -l bakito.net/adguardhome-sync -o name); do
kubectl wait --for condition=Ready ${pod} --timeout=30s
done