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__AUTH__REQUIRED: DisabledForLocalAddresses
|
||||||
SONARR__LOG__DBENABLED: "False"
|
SONARR__LOG__DBENABLED: "False"
|
||||||
SONARR__LOG__LEVEL: info
|
SONARR__LOG__LEVEL: info
|
||||||
SONARR__SERVER__PORT: &port 7878
|
SONARR__SERVER__PORT: &port 8989
|
||||||
SONARR__UPDATE__BRANCH: develop
|
SONARR__UPDATE__BRANCH: develop
|
||||||
SONARR__POSTGRES__HOST: postgresql.database.svc
|
SONARR__POSTGRES__HOST: postgresql.database.svc
|
||||||
SONARR__POSTGRES__PORT: "5432"
|
SONARR__POSTGRES__PORT: "5432"
|
||||||
|
@ -77,11 +77,18 @@ spec:
|
||||||
args:
|
args:
|
||||||
- sonarr
|
- sonarr
|
||||||
env:
|
env:
|
||||||
URL: "http://localhost"
|
- name: URL
|
||||||
CONFIG: "/config/config.xml"
|
value: "http://localhost"
|
||||||
PORT: &metricsPort 9000
|
- name: PORT
|
||||||
ENABLE_ADDITIONAL_METRICS : "true"
|
value: &metricsPort 9000
|
||||||
ENABLE_UNKNOWN_QUEUE_ITEMS: "true"
|
- 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:
|
ingress:
|
||||||
main:
|
main:
|
||||||
|
|
Loading…
Reference in New Issue