From 5c7c2e26df2efcd3fa25efd0d2d553d68211bbf9 Mon Sep 17 00:00:00 2001 From: hdw Date: Sun, 19 Apr 2026 11:16:49 +0000 Subject: [PATCH] platform/argocd/Application.yaml aktualisiert --- platform/argocd/Application.yaml | 24 ++++++++++++++++++++++++ platform/argocd/kustomization.yaml | 6 ------ 2 files changed, 24 insertions(+), 6 deletions(-) create mode 100644 platform/argocd/Application.yaml delete mode 100644 platform/argocd/kustomization.yaml diff --git a/platform/argocd/Application.yaml b/platform/argocd/Application.yaml new file mode 100644 index 0000000..96ef8d4 --- /dev/null +++ b/platform/argocd/Application.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: argocd + namespace: argocd +spec: + project: default + source: + # Hier zeigen wir auf das offizielle Argo CD Helm-Chart + # Das ist viel kleiner und stabiler als das riesige install.yaml + repoURL: https://argoproj.github.io/argo-helm + chart: argo-cd + targetRevision: 7.x.x # Wähle hier eine stabile Version + helm: + releaseName: argocd + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - ServerSideApply=true # Hier gehört das hin! \ No newline at end of file diff --git a/platform/argocd/kustomization.yaml b/platform/argocd/kustomization.yaml deleted file mode 100644 index bc713b6..0000000 --- a/platform/argocd/kustomization.yaml +++ /dev/null @@ -1,6 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -namespace: argocd -resources: - - https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml -