2026-03-08 04:19:04 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
2026-03-17 08:11:22 +00:00
|
|
|
metadata:
|
2026-03-08 04:19:04 +00:00
|
|
|
name: qbittorrent
|
|
|
|
|
namespace: media
|
|
|
|
|
spec:
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: qbittorrent
|
|
|
|
|
template:
|
2026-03-17 08:11:22 +00:00
|
|
|
metadata:
|
2026-03-08 04:19:04 +00:00
|
|
|
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
|
2026-03-08 04:19:04 +00:00
|
|
|
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
|