commit 342bb31cebb5bc4d1b651d1a3483ed55e2778b1b Author: Matt Reeves Date: Mon Jun 17 22:18:19 2024 -0400 initital commit diff --git a/apps/production/radarr/helm-release.yaml b/apps/production/radarr/helm-release.yaml new file mode 100644 index 0000000..c66ebb8 --- /dev/null +++ b/apps/production/radarr/helm-release.yaml @@ -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"