adguardhome-sync/testdata/e2e/bin/wait-for-agh-pods.sh

8 lines
190 B
Bash
Raw Normal View History

2022-10-07 13:32:20 +08:00
#!/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