commit a0957db90baad0ef791321ca5d3d7a440fbae72c Author: Linus Vogel Date: Thu Jun 25 22:15:27 2026 +0200 initial commit diff --git a/argocd-app-projects/main.yaml b/argocd-app-projects/main.yaml new file mode 100644 index 0000000..8123c17 --- /dev/null +++ b/argocd-app-projects/main.yaml @@ -0,0 +1,35 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: app-projects + namespace: argocd +spec: + project: default + source: + repoURL: https://gitea.linvogel.ch/linus/gitops.git + targetRevision: HEAD + path: argocd-app-projects + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + selfHeal: true +--- +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: apps + namespace: argocd +spec: + project: default + source: + repoURL: https://gitea.linvogel.ch/linus/gitops.git + targetRevision: HEAD + path: apps + destination: + server: https://kubernetes.default.svc + namespace: argocd + syncPolicy: + automated: + selfHeal: true \ No newline at end of file diff --git a/argocd/main.yaml b/argocd/main.yaml new file mode 100644 index 0000000..cbf190f --- /dev/null +++ b/argocd/main.yaml @@ -0,0 +1,17 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: argo-cd + namespace: argocd +spec: + destination: + namespace: argocd + server: https://kubernetes.default.svc + project: default + source: + path: argocd + repoURL: https://gitea.linvogel.ch/linus/gitops.git + targetRevision: HEAD + syncPolicy: + automated: + selfHeal: true