Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions base/prowlarr/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ spec:
securityContext:
fsGroup: 1000
initContainers:
- name: chown
image: busybox
command: ["sh", "-c", "chown -R 1000:1000 /config"]
volumeMounts:
- mountPath: /config
name: htpc-home
subPath: prowlarr
- name: config
image: busybox
securityContext:
Expand Down
10 changes: 10 additions & 0 deletions install_armhf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,16 @@ spec:
name: htpc-home
subPath: prowlarr
initContainers:
- command:
- sh
- -c
- chown -R 1000:1000 /config
image: busybox
name: chown
volumeMounts:
- mountPath: /config
name: htpc-home
subPath: prowlarr
- args:
- |
echo 'Customizing Prowlarr config...'
Expand Down
10 changes: 10 additions & 0 deletions install_x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,16 @@ spec:
name: htpc-home
subPath: prowlarr
initContainers:
- command:
- sh
- -c
- chown -R 1000:1000 /config
image: busybox
name: chown
volumeMounts:
- mountPath: /config
name: htpc-home
subPath: prowlarr
- args:
- |
echo 'Customizing Prowlarr config...'
Expand Down