mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
17 lines
404 B
Bash
Executable File
17 lines
404 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl -fks --connect-timeout 5 https://git.khuedoan.com \
|
|
|| extra_args="--values values-seed.yaml"
|
|
|
|
helm template \
|
|
--include-crds \
|
|
--namespace argocd \
|
|
${extra_args} \
|
|
argocd . \
|
|
| kubectl apply -n argocd -f -
|
|
|
|
kubectl --namespace argocd wait --timeout=300s --for condition=ResourcesUpToDate \
|
|
applicationset/system \
|
|
applicationset/platform \
|
|
applicationset/apps
|