mirror of
https://github.com/bakito/adguardhome-sync.git
synced 2025-01-10 17:20:06 +08:00
8 lines
190 B
Bash
8 lines
190 B
Bash
|
#!/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
|