commit 44264c6d5028f995d435e54f2ea548497427d1ad Author: admin Date: Sat Sep 5 00:08:58 2026 +0200 Add key-components app-of-apps: bootstrap ArgoCD via official Helm chart 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