2021-12-27 18:23:58 +07:00
|
|
|
#!/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 . \
|
2021-12-27 18:32:17 +07:00
|
|
|
| kubectl apply -n argocd -f -
|