From 01cf18ac558ecda2aba3a3fa4416ca2c5bb7648f Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Thu, 2 Apr 2026 18:10:28 -0500 Subject: [PATCH] feat: add ArgoCD Application for Gitea --- argocd/gitea-app.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 argocd/gitea-app.yaml diff --git a/argocd/gitea-app.yaml b/argocd/gitea-app.yaml new file mode 100644 index 0000000..8bdce98 --- /dev/null +++ b/argocd/gitea-app.yaml @@ -0,0 +1,33 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: gitea + namespace: argocd +spec: + project: default + source: + repoURL: https://dl.gitea.com/charts/ + chart: gitea + targetRevision: "*" + helm: + valueFiles: + - $values/gitea/values.yaml + sources: + - repoURL: https://dl.gitea.com/charts/ + chart: gitea + targetRevision: "*" + helm: + valueFiles: + - $values/gitea/values.yaml + - repoURL: ssh://git@134.199.248.182:22/ryan/lunarfront-charts.git + targetRevision: main + ref: values + destination: + server: https://kubernetes.default.svc + namespace: gitea + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true