commit ba94006a398360f4ac1720aeed41b621ac719a09 Author: Vojtech Mares Date: Sun Apr 10 23:26:30 2022 +0200 feat: initial commit - .editorconfig - _apps/app-of-apps 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