274b3249a3
Replace the legacy adult sonarr/radarr/nzbget with the kids-tier pattern
(active-active -unkin fork on shared arrstack-postgres + Valkey, S3
MediaCover/Backup, exportarr metrics). The old adult apps held no data, so
the wipe is sanctioned.
- add sonarr-adult/radarr-adult/nzbget-adult (copies of the *-kids dirs):
own DBs sonarr-adult-main/radarr-adult-main, Vault paths
.../default/{sonarr,radarr}-adult(+-db), S3 prefixes sonarr-adult/
radarr-adult, UrlBase + probe + exportarr paths /3aa168/{sonarr,radarr},
media subPaths tvshows/adult + movies/adult, nzbget config PVC on
cephrbd-fast-delete
- postgres: add managed roles sonarr-adult/radarr-adult, Database CRDs
{sonarr,radarr}-adult-main, VaultStaticSecrets {sonarr,radarr}-adult-db
- remove legacy sonarr/radarr/nzbget dirs (incl. their gateway/httproute),
managed roles sonarr/radarr, databases {sonarr,radarr}-main, VSS
{sonarr,radarr}-db, and all kustomization entries
26 lines
1.0 KiB
YAML
26 lines
1.0 KiB
YAML
---
|
|
# Non-secret env for the -unkin2 fork (adult tier). Identical mechanism to the
|
|
# kids sonarr, pointed at its own shared-Postgres database (sonarr-adult-main)
|
|
# and its own UrlBase (/3aa168/sonarr) so arrproxy path-routing reaches the adult
|
|
# instance separately. Shares the one arrstack Valkey (keys namespaced by the
|
|
# fork's sonarr:ratelimit: prefix). User/Password/ApiKey come from Secrets (see
|
|
# deployment.yaml), not here.
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: sonarr-adult-env
|
|
namespace: arrstack
|
|
data:
|
|
Sonarr__Postgres__Host: arrstack-postgres-rw.arrstack.svc.cluster.local
|
|
Sonarr__Postgres__Port: "5432"
|
|
Sonarr__Postgres__MainDb: sonarr-adult-main
|
|
Sonarr__Log__DbEnabled: "false"
|
|
Sonarr__Auth__Method: External
|
|
Sonarr__Auth__Required: DisabledForLocalAddresses
|
|
Sonarr__App__InstanceName: Sonarr
|
|
Sonarr__Server__Port: "8989"
|
|
Sonarr__Server__UrlBase: /3aa168/sonarr
|
|
Sonarr__Update__Mechanism: External
|
|
Sonarr__Redis__Host: valkey-arrstack-valkey.arrstack.svc.cluster.local
|
|
Sonarr__Redis__Port: "6379"
|