Files
home/k8s_manifests/qbittorrent/deployment.yaml
2025-01-16 22:22:53 +01:00

56 lines
1.3 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: qbittorrent
labels:
app.kubernetes.io/name: qbittorrent
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: qbittorrent
template:
metadata:
labels:
app.kubernetes.io/name: qbittorrent
spec:
volumes:
- name: nfs-vol
nfs:
server: 192.168.0.99
path: /mnt/test1/media/
- name: config
nfs:
server: 192.168.0.99
path: /mnt/test1/media/config/qbittorrent/
containers:
- name: qbittorrent
image: ghcr.io/hotio/qbittorrent:latest
livenessProbe: #untested
httpGet:
path: /
port: 8080
initialDelaySeconds: 60
failureThreshold: 6
periodSeconds: 10
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: UMASK
value: "002"
- name: TZ
value: "Etc/UTC"
- name: WEBUI_PORTS
value: "8080/tcp,8080/udp"
ports:
- containerPort: 8080
volumeMounts:
- name: config
mountPath: /config
- name: nfs-vol
mountPath: /media