mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-19 00:38:15 +07:00
8f7bd25996
- A bit faster (no need for timeout) - Still works if NGINX is down
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VALUES="values.yaml"
|
|
|
|
kubectl get ingress gitea --namespace gitea \
|
|
|| VALUES="values-seed.yaml"
|
|
|
|
helm template \
|
|
--include-crds \
|
|
--namespace argocd \
|
|
--values "${VALUES}" \
|
|
argocd . \
|
|
| kubectl apply -n argocd -f -
|