From 34f1e08f2c60a590888a2edf4e57f264e23474ea Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Sat, 17 Jan 2026 11:16:48 +0100 Subject: [PATCH] argocd: register gluetun and nzbget applications --- applications/gluetun.yaml | 26 ++++++++++++++++++++++++++ applications/nzbget.yaml | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 applications/gluetun.yaml create mode 100644 applications/nzbget.yaml diff --git a/applications/gluetun.yaml b/applications/gluetun.yaml new file mode 100644 index 0000000..14ea24b --- /dev/null +++ b/applications/gluetun.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: gluetun + namespace: argocd + annotations: +spec: + project: default + source: + repoURL: http://gitea-http.gitea.svc.cluster.local:3000/admin/turingpi.git + targetRevision: HEAD + path: custom_helm_charts/gluetun + helm: + releaseName: gluetun + valueFiles: + - ../../helm-values/gluetun_values.yaml + destination: + server: https://kubernetes.default.svc + namespace: default + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + - ServerSideApply=true diff --git a/applications/nzbget.yaml b/applications/nzbget.yaml new file mode 100644 index 0000000..6a2cf83 --- /dev/null +++ b/applications/nzbget.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: nzbget + namespace: argocd + annotations: +spec: + project: default + source: + repoURL: http://gitea-http.gitea.svc.cluster.local:3000/admin/turingpi.git + targetRevision: HEAD + path: custom_helm_charts/nzbget + helm: + releaseName: nzbget + valueFiles: + - ../../helm-values/nzbget_values.yaml + destination: + server: https://kubernetes.default.svc + namespace: default + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + - ServerSideApply=true