From ba94006a398360f4ac1720aeed41b621ac719a09 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Sun, 10 Apr 2022 23:26:30 +0200 Subject: [PATCH] feat: initial commit - .editorconfig - _apps/app-of-apps --- .editorconfig | 13 +++++++++++++ _apps/app-of-apps.yml | 18 ++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .editorconfig create mode 100644 _apps/app-of-apps.yml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..87a0020 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +end_of_line = lf +max_line_length = null + +[Makefile] +indent_style = tab diff --git a/_apps/app-of-apps.yml b/_apps/app-of-apps.yml new file mode 100644 index 0000000..099a622 --- /dev/null +++ b/_apps/app-of-apps.yml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: app-of-apps + namespace: argocd +spec: + destination: + namespace: argocd + server: https://kubernetes.default.svc + project: kissj + source: + path: _apps + repoURL: https://gitlab.mareshq.com/gitops/skautdevs/kissj.git + targetRevision: HEAD + syncPolicy: + automated: + prune: true + selfHeal: true