mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
18 lines
244 B
Plaintext
18 lines
244 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
echo "Waiting for important services to reach heathy state"
|
||
|
|
||
|
until argocd app wait \
|
||
|
argocd \
|
||
|
gitea \
|
||
|
hajimari \
|
||
|
ingress-nginx \
|
||
|
longhorn-system \
|
||
|
metallb-system \
|
||
|
> /dev/null
|
||
|
do
|
||
|
sleep 3
|
||
|
done
|