stack.basicstack.de/apps/app-argocd.yaml
CTO Agent 314c3e794e fix(argocd): enable server-side apply for argocd self-managed Application
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>
2026-07-12 09:46:08 +00:00

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