mirror of
https://github.com/bakito/adguardhome-sync.git
synced 2025-01-10 09:09:46 +08:00
7 lines
190 B
Bash
Executable file
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
|