mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
18 lines
244 B
Bash
Executable File
18 lines
244 B
Bash
Executable File
#!/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
|