Reset git history for making manifests public

This commit is contained in:
2026-06-01 10:13:06 +02:00
commit 0ca56d9520
403 changed files with 41985 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: radarr
namespace: arrstack
spec:
replicas: 1
selector:
matchLabels:
app: radarr
serviceName: radarr
template:
metadata:
labels:
app: radarr
spec:
restartPolicy: Always
terminationGracePeriodSeconds: 60
securityContext:
fsGroup: 0
containers:
- name: radarr
image: lscr.io/linuxserver/radarr:6.1.1
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
env:
- name: PUID
value: "0"
- name: PGID
value: "0"
ports:
- containerPort: 7878
volumeMounts:
- name: config
mountPath: /config
- name: media
subPath: "Anime Movies"
mountPath: /anime
- name: media
subPath: Movies
mountPath: /movies
- name: media
subPath: Nostalgia
mountPath: /nostalgia
- name: downloads
mountPath: /downloads
volumes:
- name: config
persistentVolumeClaim:
claimName: radarr-config
- name: media
persistentVolumeClaim:
claimName: smb-media
- name: downloads
persistentVolumeClaim:
claimName: smb-downloads