mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-24 21:52:36 +07:00
14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VALUES="values.yaml"
|
|
|
|
curl -fks --connect-timeout 5 https://git.khuedoan.com \
|
|
|| VALUES="values-seed.yaml"
|
|
|
|
helm template \
|
|
--include-crds \
|
|
--namespace argocd \
|
|
--values "${VALUES}" \
|
|
argocd . \
|
|
| kubectl apply -n argocd -f -
|