33 lines
826 B
YAML
33 lines
826 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: zurg
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: zurg
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: zurg
|
|
spec:
|
|
containers:
|
|
- name: zurg
|
|
image: ghcr.io/debridmediamanager/zurg-testing:latest
|
|
ports:
|
|
- containerPort: 9999
|
|
volumeMounts:
|
|
- name: ssd
|
|
mountPath: /app/jellyfin_update.sh
|
|
subPath: configs/zurg/app/jellyfin_update.sh
|
|
- name: ssd
|
|
mountPath: /app/config.yml
|
|
subPath: configs/zurg/app/config.yml
|
|
- name: ssd
|
|
mountPath: /app/data
|
|
subPath: configs/zurg/app/data
|
|
volumes:
|
|
- name: ssd
|
|
persistentVolumeClaim:
|
|
claimName: nfs-ssd-pvc
|