k8s/apps/arr/qbittorrent/deployment.yaml

48 lines
1 KiB
YAML
Raw Normal View History

apiVersion: apps/v1
kind: Deployment
2026-03-17 08:11:22 +00:00
metadata:
name: qbittorrent
namespace: media
spec:
replicas: 1
selector:
matchLabels:
app: qbittorrent
template:
2026-03-17 08:11:22 +00:00
metadata:
labels:
app: qbittorrent
spec:
containers:
- name: qbittorrent
image: linuxserver/qbittorrent
resources:
limits:
memory: "2Gi"
requests:
memory: "512Mi"
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
volumeMounts:
- name: config
mountPath: /config
- name: downloads
mountPath: /downloads
2026-04-14 07:34:45 +00:00
- name: jellyfin-nas
mountPath: /nas
ports:
- containerPort: 8080
volumes:
- name: config
persistentVolumeClaim:
claimName: qbittorrent-config
- name: downloads
persistentVolumeClaim:
claimName: qbittorrent-downloads
2026-04-14 07:34:45 +00:00
- name: jellyfin-nas
persistentVolumeClaim:
claimName: jellyfin-nas