From 44264c6d5028f995d435e54f2ea548497427d1ad Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 5 Sep 2026 00:08:58 +0200 Subject: [PATCH] Add key-components app-of-apps: bootstrap ArgoCD via official Helm chart --- key-components/argocd.yaml | 24 ++++++++++++++++++++++++ key-components/key-components.yaml | 22 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 key-components/argocd.yaml create mode 100644 key-components/key-components.yaml diff --git a/key-components/argocd.yaml b/key-components/argocd.yaml new file mode 100644 index 0000000..404f2db --- /dev/null +++ b/key-components/argocd.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: argocd + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: https://argoproj.github.io/argo-helm + chart: argo-cd + targetRevision: 10.8.0 + helm: + releaseName: argocd + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/key-components/key-components.yaml b/key-components/key-components.yaml new file mode 100644 index 0000000..12178c3 --- /dev/null +++ b/key-components/key-components.yaml @@ -0,0 +1,22 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: key-components + namespace: argocd + finalizers: + - resources-finalizer.argocd.argoproj.io +spec: + project: default + source: + repoURL: git@git.pit4noshit.de:admin/eoscloud-k8s.git + targetRevision: main + path: key-components + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true