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: ghcr.io/hotio/jellyfin:latest@sha256:750a8b41c2c16b129b4dc8be4bea0b6778a0162c5cd9daa1328c9d52b8d6d90d # {"$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
|