From 59f70889d2e88d0dc7a8edd4ac44944261065a77 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 23 May 2026 23:16:27 +1000 Subject: [PATCH] fix(argocd): add vault and consul to platform project destinations Vault and consul namespaces were missing from the platform AppProject allowed destinations, causing ArgoCD sync failures with: destination server 'https://kubernetes.default.svc' and namespace 'vault' do not match any of the allowed destinations in project 'platform' --- argocd/projects/platform.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/argocd/projects/platform.yaml b/argocd/projects/platform.yaml index b088188..53e4e28 100644 --- a/argocd/projects/platform.yaml +++ b/argocd/projects/platform.yaml @@ -21,6 +21,8 @@ spec: server: https://kubernetes.default.svc - namespace: 'certificates' server: https://kubernetes.default.svc + - namespace: 'consul' + server: https://kubernetes.default.svc - namespace: 'externaldns' server: https://kubernetes.default.svc - namespace: 'jfrog' @@ -33,6 +35,8 @@ spec: server: https://kubernetes.default.svc - namespace: 'reposync' server: https://kubernetes.default.svc + - namespace: 'vault' + server: https://kubernetes.default.svc - namespace: 'woodpecker' server: https://kubernetes.default.svc clusterResourceWhitelist: -- 2.47.3