From be1602087851f72a82f355bb964e869dab66f937 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 11 Aug 2026 20:51:05 -0700 Subject: [PATCH] fix(argocd): use comma-separated include list, not brace expansion ArgoCD directory.include uses Go filepath.Match glob syntax, not shell brace expansion - {a,b,c} silently matched nothing, only the original 2 files stayed tracked. --- k8s/argocd/apps/00-substrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/argocd/apps/00-substrate.yaml b/k8s/argocd/apps/00-substrate.yaml index ddc8657..3c6ee77 100644 --- a/k8s/argocd/apps/00-substrate.yaml +++ b/k8s/argocd/apps/00-substrate.yaml @@ -90,7 +90,7 @@ spec: targetRevision: main path: k8s/bootstrap/cert-manager directory: - include: "{letsencrypt-issuer.yaml,homelab-ca-issuer.yaml,homelab-ca-configmap.yaml}" + include: "letsencrypt-issuer.yaml,homelab-ca-issuer.yaml,homelab-ca-configmap.yaml" destination: server: https://kubernetes.default.svc namespace: cert-manager