From 3698ab3c73593a5b35a2a0618fa17ebfdacb00db Mon Sep 17 00:00:00 2001 From: arcodange Date: Thu, 16 Jul 2026 20:37:29 +0200 Subject: [PATCH] =?UTF-8?q?fix(argocd):=20retire=20usernameSecret/password?= =?UTF-8?q?Secret=20de=20spec.source=20=E2=80=94=20champs=20inexistants=20?= =?UTF-8?q?du=20CRD=20Application?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ces champs (commit 7aa789d1) n'existent pas dans le schéma Application d'ArgoCD : l'API server les élague à l'apply, d'où un diff permanent → factory OutOfSync en boucle (296 tentatives selfHeal) sur kadans, telegram-gateway et dance-lessons-coach. L'authentification aux repos privés passe par un secret repo-creds (label argocd.argoproj.io/secret-type: repo-creds, url préfixe https://gitea.arcodange.lab/arcodange) — corrigé côté cluster sur le secret gitea-credentials existant. Co-Authored-By: Claude Fable 5 --- argocd/templates/apps.yaml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/argocd/templates/apps.yaml b/argocd/templates/apps.yaml index 10c0bb4..e681e7c 100644 --- a/argocd/templates/apps.yaml +++ b/argocd/templates/apps.yaml @@ -18,14 +18,6 @@ spec: repoURL: https://gitea.arcodange.lab/{{ $org }}/{{ $app_name }} targetRevision: HEAD path: chart - {{- if eq $org "arcodange" }} - usernameSecret: - name: gitea-credentials - key: username - passwordSecret: - name: gitea-credentials - key: password - {{- end }} destination: server: https://kubernetes.default.svc namespace: {{ $app_name }} @@ -64,14 +56,6 @@ spec: repoURL: https://gitea.arcodange.lab/{{ $org }}/{{ $app_name }} targetRevision: HEAD path: chart - {{- if eq $org "arcodange" }} - usernameSecret: - name: gitea-credentials - key: username - passwordSecret: - name: gitea-credentials - key: password - {{- end }} helm: valueFiles: - values.yaml