Files
k3s-at-home/clusters/ipv6/arr-stack/sabnzbd/sabnzbd.yml
aggarwalakshun 9aabad8216
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 1m3s
ipv6 cluster initial commit
2026-01-04 07:08:20 +05:30

41 lines
841 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: sabnzbd
namespace: arr-stack
spec:
strategy:
type: Recreate
selector:
matchLabels:
app: sabnzbd
template:
metadata:
labels:
app: sabnzbd
spec:
containers:
- name: sabnzbd
image: lscr.io/linuxserver/sabnzbd:4.5.5
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Asia/Kolkata"
volumeMounts:
- name: sabnzbd-config
mountPath: /config
- name: downloads
mountPath: /downloads
volumes:
- name: sabnzbd-config
persistentVolumeClaim:
claimName: sabnzbd-longhorn
- name: downloads
nfs:
server: 10.0.0.123
path: /merge/downloads