mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
12 lines
268 B
Bash
Executable File
12 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
helm template \
|
|
--include-crds \
|
|
--namespace argocd \
|
|
argocd . \
|
|
| kubectl apply -n argocd -f -
|
|
|
|
kubectl -n argocd wait --timeout=60s --for condition=Established \
|
|
crd/applications.argoproj.io \
|
|
crd/applicationsets.argoproj.io
|