arrstack: add kids backend tier (sonarr/radarr/nzbget-kids)
Split the arrstack media pipeline into an adult and a kids tier so kids content lives in its own libraries, databases, and downloader while reusing the shared prowlarr, CNPG cluster, Valkey, media PVCs, and S3 buckets. Backend workloads only — no routing/ingress or arrproxy changes in this PR; the adult instances are untouched. - sonarr-kids/radarr-kids: mirror the adult -unkin fork Deployments (same images/tags, 3 active-active replicas), pointed at their own Postgres DBs (sonarr-kids-main/radarr-kids-main), UrlBase /3df803/sonarr and /3df803/radarr, and kids MediaCover/Backup S3 prefixes; media mounts use the tvshows/kids and movies/kids subPaths of the shared media-tv/media-movies PVCs. - nzbget-kids: second downloader on its own RWO config PVC, writing completed downloads into the kids media subtrees for same-filesystem hardlink imports. - postgres: two managed roles + Database CRDs (sonarr-kids/radarr-kids) and their VSO-synced <app>-kids-db credential secrets. - per-app VMPodScrape for each kids exportarr sidecar; register the three new apps in the base kustomization.
This commit is contained in:
@@ -86,6 +86,30 @@ spec:
|
||||
connectionLimit: -1
|
||||
passwordSecret:
|
||||
name: prowlarr-db
|
||||
- name: sonarr-kids
|
||||
ensure: present
|
||||
comment: Sonarr (kids) application role (owns sonarr-kids-main)
|
||||
login: true
|
||||
superuser: false
|
||||
createdb: false
|
||||
createrole: false
|
||||
inherit: true
|
||||
replication: false
|
||||
connectionLimit: -1
|
||||
passwordSecret:
|
||||
name: sonarr-kids-db
|
||||
- name: radarr-kids
|
||||
ensure: present
|
||||
comment: Radarr (kids) application role (owns radarr-kids-main)
|
||||
login: true
|
||||
superuser: false
|
||||
createdb: false
|
||||
createrole: false
|
||||
inherit: true
|
||||
replication: false
|
||||
connectionLimit: -1
|
||||
passwordSecret:
|
||||
name: radarr-kids-db
|
||||
enablePDB: true
|
||||
enableSuperuserAccess: false
|
||||
failoverDelay: 0
|
||||
|
||||
Reference in New Issue
Block a user