fix(sonarr): specify api key for exportarr
This commit is contained in:
parent
751b6d2e76
commit
927025ea2d
|
@ -42,7 +42,7 @@ spec:
|
|||
SONARR__AUTH__REQUIRED: DisabledForLocalAddresses
|
||||
SONARR__LOG__DBENABLED: "False"
|
||||
SONARR__LOG__LEVEL: info
|
||||
SONARR__SERVER__PORT: &port 7878
|
||||
SONARR__SERVER__PORT: &port 8989
|
||||
SONARR__UPDATE__BRANCH: develop
|
||||
SONARR__POSTGRES__HOST: postgresql.database.svc
|
||||
SONARR__POSTGRES__PORT: "5432"
|
||||
|
@ -77,11 +77,18 @@ spec:
|
|||
args:
|
||||
- sonarr
|
||||
env:
|
||||
URL: "http://localhost"
|
||||
CONFIG: "/config/config.xml"
|
||||
PORT: &metricsPort 9000
|
||||
ENABLE_ADDITIONAL_METRICS : "true"
|
||||
ENABLE_UNKNOWN_QUEUE_ITEMS: "true"
|
||||
- name: URL
|
||||
value: "http://localhost"
|
||||
- name: PORT
|
||||
value: &metricsPort 9000
|
||||
- name: ENABLE_ADDITIONAL_METRICS
|
||||
value: "true"
|
||||
- name: ENABLE_UNKNOWN_QUEUE_ITEMS
|
||||
value: "true"
|
||||
- name: API_KEY
|
||||
secretKeyRef:
|
||||
name: sonarr-secret
|
||||
key: SONARR__AUTH__APIKEY
|
||||
|
||||
ingress:
|
||||
main:
|
||||
|
|
Loading…
Reference in New Issue