From 0bfafbac32ffd4db55fd786851ddf413baf75b3a Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Fri, 27 Mar 2026 03:49:48 -0400 Subject: [PATCH] Add default application project configuration to ArgoCD kustomization --- .../bootstrap/argocd/default-appproject.yaml | 19 +++++++++++++++++++ .../noble/bootstrap/argocd/kustomization.yaml | 1 + 2 files changed, 20 insertions(+) create mode 100644 clusters/noble/bootstrap/argocd/default-appproject.yaml diff --git a/clusters/noble/bootstrap/argocd/default-appproject.yaml b/clusters/noble/bootstrap/argocd/default-appproject.yaml new file mode 100644 index 0000000..4ad0aad --- /dev/null +++ b/clusters/noble/bootstrap/argocd/default-appproject.yaml @@ -0,0 +1,19 @@ +apiVersion: argoproj.io/v1alpha1 +kind: AppProject +metadata: + name: default + namespace: argocd +spec: + description: Default project for noble cluster apps + sourceRepos: + - '*' + destinations: + - namespace: '*' + server: '*' + clusterResourceWhitelist: + - group: '*' + kind: '*' + namespaceResourceWhitelist: + - group: '*' + kind: '*' + diff --git a/clusters/noble/bootstrap/argocd/kustomization.yaml b/clusters/noble/bootstrap/argocd/kustomization.yaml index cda9c05..0837876 100644 --- a/clusters/noble/bootstrap/argocd/kustomization.yaml +++ b/clusters/noble/bootstrap/argocd/kustomization.yaml @@ -4,4 +4,5 @@ namespace: argocd resources: - namespace.yaml - https://raw.githubusercontent.com/argoproj/argo-cd/v2.14.7/manifests/install.yaml + - default-appproject.yaml