Files
Kubernetes.K3s.installLog/services/PVR/SABnzbd/deployment-sabnzbd.yaml

42 lines
1.0 KiB
YAML
Raw Normal View History

2024-01-15 13:09:25 +11:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: sabnzbd
2025-07-10 10:18:37 +10:00
namespace: sabnzbd
2024-01-15 13:09:25 +11:00
labels:
app: sabnzbd
spec:
replicas: 1
selector:
matchLabels:
app: sabnzbd
template:
metadata:
labels:
app: sabnzbd
spec:
containers:
- name: sabnzbd
# image: bv11-cr01.bessems.eu/proxy/linuxserver/sabnzbd
image: linuxserver/sabnzbd
ports:
- name: web
containerPort: 8080
volumeMounts:
- mountPath: /config/sabnzbd.ini
subPath: sabnzbd.ini
2025-07-10 10:18:37 +10:00
name: csismb-sabnzbd-config
2024-01-15 13:09:25 +11:00
- mountPath: /downloads
subPath: downloads
2025-07-10 10:18:37 +10:00
name: csismb-sabnzbd-scratch
2024-01-15 13:09:25 +11:00
- mountPath: /incomplete-downloads
subPath: incomplete-downloads
2025-07-10 10:18:37 +10:00
name: csismb-sabnzbd-scratch
2024-01-15 13:09:25 +11:00
volumes:
2025-07-10 10:18:37 +10:00
- name: csismb-sabnzbd-config
2024-01-15 13:09:25 +11:00
persistentVolumeClaim:
2025-07-10 10:18:37 +10:00
claimName: csismb-sabnzbd-config
- name: csismb-sabnzbd-scratch
2024-01-15 13:09:25 +11:00
persistentVolumeClaim:
2025-07-10 10:18:37 +10:00
claimName: csismb-sabnzbd-scratch