From 81915b2a6e47ed997f3f65b006dee4eda1936d5b Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Fri, 4 Oct 2024 20:20:02 +0200 Subject: [PATCH] add tests-self and apps-self --- app-files/apps.yaml | 20 ++++++++++++++++++++ app-files/tests.yaml | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app-files/apps.yaml b/app-files/apps.yaml index 428d27b..1d25110 100644 --- a/app-files/apps.yaml +++ b/app-files/apps.yaml @@ -1,6 +1,26 @@ --- apiVersion: argoproj.io/v1alpha1 kind: Application +metadata: + name: apps-self + namespace: argocd +spec: + project: default + source: + repoURL: https://git.ar21.de/yolokube/core-deployments.git + targetRevision: HEAD + path: "app-files" + directory: + include: 'apps.yaml' + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: false +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application metadata: name: woodpecker namespace: argocd diff --git a/app-files/tests.yaml b/app-files/tests.yaml index 06e45aa..4be36af 100644 --- a/app-files/tests.yaml +++ b/app-files/tests.yaml @@ -1,6 +1,26 @@ --- apiVersion: argoproj.io/v1alpha1 kind: Application +metadata: + name: tests-self + namespace: argocd +spec: + project: default + source: + repoURL: https://git.ar21.de/yolokube/core-deployments.git + targetRevision: HEAD + path: "app-files" + directory: + include: 'tests.yaml' + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: false +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application metadata: name: test-deployments namespace: argocd