initital commit

This commit is contained in:
Matt Reeves 2024-06-17 22:18:19 -04:00
commit 342bb31ceb

View 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"