initital commit
This commit is contained in:
commit
342bb31ceb
1 changed files with 36 additions and 0 deletions
36
apps/production/radarr/helm-release.yaml
Normal file
36
apps/production/radarr/helm-release.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
apiVersion: apps/v1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: radarr
|
||||
namespace: arrs
|
||||
spec:
|
||||
chart:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: radarr
|
||||
replicas: 3
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: radarr
|
||||
spec:
|
||||
containers:
|
||||
- name: radarr
|
||||
image: ghcr.io/linuxserver/radarr@sha256:594fab7afdb1de2f61a82835f3f2377a6220d4940d4b49bfa95e82d8a6b13a95
|
||||
ports:
|
||||
- containerPort: 7878
|
||||
volumeMounts:
|
||||
- name: radarr-config
|
||||
mountPath: /config
|
||||
env:
|
||||
- name: TZ
|
||||
value: "America/New_York" # Change this to your time zone
|
||||
- name: PUID
|
||||
value: "1000" # Change this to your preferred user ID
|
||||
- name: PGID
|
||||
value: "1000" # Change this to your preferred group ID
|
||||
volumes:
|
||||
- name: radarr-config
|
||||
hostPath:
|
||||
path: "/docker/appdata/radarr/config"
|
Loading…
Reference in a new issue