Initial commit: servarr-system manifests

This commit is contained in:
kisfenyo
2025-12-16 18:23:34 +01:00
commit aacfa70c45
3 changed files with 850 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
---
# ArgoCD Project for homelab applications
# Projects provide logical grouping and access control
apiVersion: argoproj.io/v1alpha1
kind: AppProject
metadata:
name: homelab
namespace: argocd
spec:
description: Viktor's homelab applications
# Allow deploying to any namespace
destinations:
- namespace: '*'
server: https://kubernetes.default.svc
# Allow any cluster-scoped resources
clusterResourceWhitelist:
- group: '*'
kind: '*'
# Allow all namespaced resources
namespaceResourceWhitelist:
- group: '*'
kind: '*'
# Source repos this project can pull from
sourceRepos:
- https://gitea.dooplex.hu/viktor/homelab-manifests.git
- https://gitea.dooplex.hu/viktor/*
---
# Servarr Application (sonarr, radarr, prowlarr, qbittorrent)
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: servarr
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: homelab
source:
repoURL: https://gitea.dooplex.hu/viktor/homelab-manifests.git
targetRevision: main
path: servarr-system
destination:
server: https://kubernetes.default.svc
namespace: servarr-system
syncPolicy:
# Start with manual sync until you're comfortable
# automated:
# prune: true
# selfHeal: true
# allowEmpty: false
syncOptions:
- CreateNamespace=true
- PruneLast=true
- ApplyOutOfSyncOnly=true
# Retry on transient failures
retry:
limit: 3
backoff:
duration: 5s
factor: 2
maxDuration: 3m