feat(radarr): Changed uid and gid env variables to be set by the user
This commit is contained in:
parent
5bab8add83
commit
68d9bb70e1
2 changed files with 3 additions and 3 deletions
|
|
@ -3,6 +3,6 @@ Radarr is a movie collection manager for Usenet and BitTorrent users. It can mon
|
||||||
\- [source](https://github.com/Radarr/Radarr)
|
\- [source](https://github.com/Radarr/Radarr)
|
||||||
|
|
||||||
## Using this kubernetes config
|
## Using this kubernetes config
|
||||||
In `deployment.yml`, set the host paths for the downloads folder (the folder that your download client of choice will download files to) and the media folder (where the movies will be stored by Radarr).
|
In `deployment.yml`, set the host paths for the downloads folder (the folder that your download client of choice will download files to) and the media folder (where the movies will be stored by Radarr). Also set the user ID and group ID that Radarr will run under. This will affect the user and group of files and folders managed by Radarr
|
||||||
|
|
||||||
In `ingress.yml`, set the hostname that users will use to connect to the service. This config assumes you have cert-manager installed on your cluster, so if you want to provide HTTPS another way, feel free to comment out the `spec.tls` section (the annotation shouldn't affect anything, but you can comment it out as well if you want)
|
In `ingress.yml`, set the hostname that users will use to connect to the service. This config assumes you have cert-manager installed on your cluster, so if you want to provide HTTPS another way, feel free to comment out the `spec.tls` section (the annotation shouldn't affect anything, but you can comment it out as well if you want)
|
||||||
|
|
@ -19,9 +19,9 @@ spec:
|
||||||
- containerPort: 7878
|
- containerPort: 7878
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
value: "997"
|
value: <user ID>
|
||||||
- name: PGID
|
- name: PGID
|
||||||
value: "997"
|
value: <group ID>
|
||||||
- name: TZ
|
- name: TZ
|
||||||
value: "UTC"
|
value: "UTC"
|
||||||
resources:
|
resources:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue