mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-22 02:07:46 +07:00
750614c866
Instead of make target
13 lines
294 B
Bash
Executable File
13 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
|
|
helm template \
|
|
--dependency-update \
|
|
--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
|