Initial commit: servarr-system manifests
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user