From 504de2fc2e43c6977a013899d4b585504f482c31 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Sat, 13 Apr 2024 21:13:43 +0200 Subject: [PATCH] Add argocd project yaml --- deployment/project.yaml | 14 ++++++++++++++ kustomization.yaml | 1 + 2 files changed, 15 insertions(+) create mode 100644 deployment/project.yaml diff --git a/deployment/project.yaml b/deployment/project.yaml new file mode 100644 index 0000000..487eb52 --- /dev/null +++ b/deployment/project.yaml @@ -0,0 +1,14 @@ +apiVersion: argoproj.io/v1alpha1 +kind: AppProject +metadata: + name: generations-heritage-vv +spec: + description: Generations heritages is a project that aims to preserve the heritage of families based on bloodlines. + sourceRepos: + - '*' # Allow all repositories + destinations: + - namespace: 'generations-heritage' + server: '*' + clusterResourceWhitelist: + - group: '*' + kind: '*' # Allow all kinds \ No newline at end of file diff --git a/kustomization.yaml b/kustomization.yaml index c9cb871..bae1769 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,6 +3,7 @@ kind: Kustomization namespace: argocd resources: + - ./deployment/project.yaml - ./deployment/auth-service-argo.yaml - ./deployment/memgraph-argo.yaml - ./deployment/backend-argo.yaml