From 07b63def37e6eda9a40cf8d11407725fd7a31c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 30 Aug 2022 17:30:55 +0200 Subject: [PATCH] enable apps of apps --- root.yaml | 19 +++++++++++++++++++ simple-app.yaml => root/simple-app.yaml | 0 2 files changed, 19 insertions(+) create mode 100644 root.yaml rename simple-app.yaml => root/simple-app.yaml (100%) diff --git a/root.yaml b/root.yaml new file mode 100644 index 0000000..412f046 --- /dev/null +++ b/root.yaml @@ -0,0 +1,19 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: root + namespace: openshift-gitops +spec: + destination: + name: '' + namespace: openshift-gitops + server: 'https://kubernetes.default.svc' + source: + path: root + repoURL: 'https://github.com/nmasse-itix/ArgoCD-Examples.git' + targetRevision: HEAD + project: default + syncPolicy: + automated: + prune: false + selfHeal: false diff --git a/simple-app.yaml b/root/simple-app.yaml similarity index 100% rename from simple-app.yaml rename to root/simple-app.yaml