this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: sonarr to cnpg

+24
+17
cluster/apps/media/sonarr/app/externalsecret.yaml
··· 10 10 name: *name 11 11 target: 12 12 name: *name 13 + creationPolicy: Owner 14 + template: 15 + engineVersion: v2 16 + data: 17 + # Sonarr 18 + SONARR__API_KEY: "{{ .SONARR_APIKEY }}" 19 + SONARR__POSTGRES_MAIN_DB: sonarr_main 20 + SONARR__POSTGRES_LOG_DB: sonarr_log 21 + SONARR__POSTGRES_USER: "{{ .SONARR_POSTGRES_USER }}" 22 + SONARR__POSTGRES_PASSWORD: "{{ .SONARR_POSTGRES_PASS }}" 23 + SONARR__POSTGRES_HOST: &dbhost postgres-rw.databases.svc.cluster.local 24 + # Postgres Init 25 + INIT_POSTGRES_DBNAME: sonarr_main sonarr_log 26 + INIT_POSTGRES_HOST: *dbhost 27 + INIT_POSTGRES_USER: "{{ .SONARR_POSTGRES_USER }}" 28 + INIT_POSTGRES_PASS: "{{ .SONARR_POSTGRES_PASS }}" 29 + INIT_POSTGRES_SUPER_PASS: "{{ .POSTGRES_SUPER_PASS }}" 13 30 dataFrom: 14 31 - find: 15 32 name:
+7
cluster/apps/media/sonarr/app/helm-release.yaml
··· 26 26 uninstall: 27 27 keepHistory: false 28 28 values: 29 + initContainers: 30 + 01-init-db: 31 + image: ghcr.io/onedr0p/postgres-init:14.8 32 + imagePullPolicy: IfNotPresent 33 + envFrom: 34 + - secretRef: 35 + name: sonarr 29 36 controller: 30 37 strategy: RollingUpdate 31 38 annotations: