The Argo CD CRDs exceed the 262144-byte annotation limit that client-side apply imposes via last-applied-configuration. Server-side apply bypasses this limit and is required for Argo CD to manage its own large CRDs. Co-Authored-By: Paperclip <noreply@paperclip.ing>
21 lines
517 B
YAML
21 lines
517 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argocd
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: git@forgejo.forgejo.svc.cluster.local:basicstack/stack.basicstack.de.git
|
|
targetRevision: main
|
|
path: apps/argocd
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: false # Manual approval for deletions
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- ServerSideApply=true
|