50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: jellyfin
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: jellyfin
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: jellyfin
|
|
spec:
|
|
containers:
|
|
- name: jellyfin
|
|
### Maintained by flux - Image Update Automation
|
|
image: jellyfin/jellyfin:latest@sha256:aefb67e6a7ff1debdd154a78a7bbb780fd0c873d8639210a7f6a2016ad2b35db # {"$imagepolicy": "jellyfin:jellyfin"}
|
|
###
|
|
ports:
|
|
- containerPort: 7359
|
|
- containerPort: 8096
|
|
volumeMounts:
|
|
- name: cache
|
|
mountPath: /cache
|
|
- name: config
|
|
mountPath: /config
|
|
- name: music
|
|
mountPath: /music
|
|
- name: tv-shows
|
|
mountPath: /tv-shows
|
|
- name: movies
|
|
mountPath: /movies
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-config
|
|
- name: cache
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-cache
|
|
- name: music
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-music
|
|
- name: tv-shows
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-tv-shows
|
|
- name: movies
|
|
persistentVolumeClaim:
|
|
claimName: jellyfin-movies
|