From 585fbaca82e0f797dcecf7d9060c4ce4d64b52aa Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Sat, 21 Mar 2026 13:52:28 +0900 Subject: [PATCH] fix argocd-self Application helm source structure --- argocd/apps/argocd-self.yaml | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/argocd/apps/argocd-self.yaml b/argocd/apps/argocd-self.yaml index 74c968a..90ca573 100644 --- a/argocd/apps/argocd-self.yaml +++ b/argocd/apps/argocd-self.yaml @@ -8,21 +8,33 @@ metadata: spec: project: default source: - repoURL: https://gitea.nik4nao.com/nik/homelab.git - targetRevision: main - path: argocd/values + repoURL: https://argoproj.github.io/argo-helm + chart: argo-cd + targetRevision: 9.4.15 helm: - chart: argo-cd - repo: https://argoproj.github.io/argo-helm - version: 9.4.15 - valueFiles: - - argocd.yaml + values: | + global: + domain: argocd.home.arpa + configs: + params: + server.insecure: "true" + server: + ingress: + enabled: false + redis-ha: + enabled: false + controller: + replicas: 1 + repoServer: + replicas: 1 + applicationSet: + replicas: 1 destination: server: https://kubernetes.default.svc namespace: argocd syncPolicy: automated: - prune: false # never auto-delete ArgoCD itself + prune: false selfHeal: true syncOptions: - CreateNamespace=false \ No newline at end of file