From b5618d8cb79a5d4097fbd34b7f8f2cca3c718e4c Mon Sep 17 00:00:00 2001 From: Asara Date: Fri, 7 Jul 2023 19:23:14 -0400 Subject: [PATCH] Base chart --- argo/apps/Chart.yaml | 5 +++++ argo/apps/templates/root.yaml | 21 +++++++++++++++++++++ argo/apps/values.yaml | 0 3 files changed, 26 insertions(+) create mode 100644 argo/apps/Chart.yaml create mode 100644 argo/apps/templates/root.yaml create mode 100644 argo/apps/values.yaml diff --git a/argo/apps/Chart.yaml b/argo/apps/Chart.yaml new file mode 100644 index 0000000..75e1b70 --- /dev/null +++ b/argo/apps/Chart.yaml @@ -0,0 +1,5 @@ +--- +apiVersion: v2 +name: root +version: 1.0.0 +... diff --git a/argo/apps/templates/root.yaml b/argo/apps/templates/root.yaml new file mode 100644 index 0000000..d65fa10 --- /dev/null +++ b/argo/apps/templates/root.yaml @@ -0,0 +1,21 @@ +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: root + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + destination: + server: https://kubernetes.default.svc + namespace: default + project: default + source: + path: argocd/apps/ + repoURL: https://git.minhas.io/asara/k8s + targetRevision: HEAD + syncPolicy: + automated: + prune: true + selfHeal: true +... diff --git a/argo/apps/values.yaml b/argo/apps/values.yaml new file mode 100644 index 0000000..e69de29