Skip to content

Commit 7c0ee61

Browse files
committed
unpackerr: fix secret file paths
1 parent 720e86e commit 7c0ee61

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

charts/unpackerr/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: unpackerr
33
description: Extracts downloads for other arr apps
44
type: application
5-
version: 0.4.1
5+
version: 0.4.2
66
appVersion: "release-0.14.5"
77
icon: "https://unpackerr.zip/img/icon.png"
88
dependencies:

charts/unpackerr/templates/configmap.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ data:
7777
{{ if .Values.lidarr.enabled }}
7878
[[lidarr]]
7979
url = {{ .Values.lidarr.url | quote }}
80-
api_key = "filepath:/secrets/lidarr/api-key"
80+
api_key = "filepath:/secrets/lidarr"
8181
paths = {{ .Values.lidarr.paths | quote }}
8282
protocols = {{ .Values.lidarr.protocols | quote }}
8383
timeout = {{ .Values.lidarr.timeout | quote }}
@@ -89,7 +89,7 @@ data:
8989
{{- if .Values.radarr.enabled }}
9090
[[radarr]]
9191
url = {{ .Values.radarr.url | quote }}
92-
api_key = "filepath:/secrets/radarr/api-key"
92+
api_key = "filepath:/secrets/radarr"
9393
paths = {{ .Values.radarr.paths }}
9494
protocols = {{ .Values.radarr.protocols | quote }}
9595
timeout = {{ .Values.radarr.timeout | quote }}
@@ -101,7 +101,7 @@ data:
101101
{{- if .Values.readarr.enabled }}
102102
[[readarr]]
103103
url = {{ .Values.readarr.url | quote }}
104-
api_key = "filepath:/secrets/readarr/api-key"
104+
api_key = "filepath:/secrets/readarr"
105105
paths = {{ .Values.readarr.paths }}
106106
protocols = {{ .Values.readarr.protocols | quote }}
107107
timeout = {{ .Values.readarr.timeout | quote }}
@@ -113,7 +113,7 @@ data:
113113
{{- if .Values.sonarr.enabled }}
114114
[[sonarr]]
115115
url = {{ .Values.sonarr.url | quote }}
116-
api_key = "filepath:/secrets/sonarr/api-key"
116+
api_key = "filepath:/secrets/sonarr"
117117
paths = {{ .Values.sonarr.paths }}
118118
protocols = {{ .Values.sonarr.protocols | quote }}
119119
timeout = {{ .Values.sonarr.timeout | quote }}

charts/unpackerr/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lidarr:
3636
enabled: false
3737
url: "http://lidarr:8686"
3838
paths: |-
39-
['/downloads']
39+
['/data/downloads']
4040
protocols: "torrent"
4141
timeout: "10s"
4242
delete_delay: "5m"
@@ -47,7 +47,7 @@ radarr:
4747
enabled: false
4848
url: "http://radarr:7878"
4949
paths: |-
50-
['/downloads']
50+
['/data/downloads']
5151
protocols: "torrent"
5252
timeout: "10s"
5353
delete_delay: "5m"
@@ -58,7 +58,7 @@ readarr:
5858
enabled: false
5959
url: "http://readarr:8787"
6060
paths: |-
61-
['/downloads']
61+
['/data/downloads']
6262
protocols: "torrent"
6363
timeout: "10s"
6464
delete_delay: "5m"
@@ -69,7 +69,7 @@ sonarr:
6969
enabled: false
7070
url: "http://sonarr:8989"
7171
paths: |-
72-
['/downloads']
72+
['/data/downloads']
7373
protocols: "torrent"
7474
timeout: "10s"
7575
delete_delay: "5m"

0 commit comments

Comments
 (0)