14 lines
366 B
YAML
14 lines
366 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: argocd
|
|
resources:
|
|
- https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
|
|
spec:
|
|
# ... (dein restlicher Code)
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- ServerSideApply=true # <--- DIESE ZEILE IST DIE LÖSUNG!
|