whole bunch of fixes
This commit is contained in:
44
apps/media/server.deployment.yaml
Normal file
44
apps/media/server.deployment.yaml
Normal file
@@ -0,0 +1,44 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: jellyfin-server
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: jellyfin-server
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: jellyfin-server
|
||||
spec:
|
||||
containers:
|
||||
- name: jellyfin-server
|
||||
image: jellyfin/jellyfin:10.8.9
|
||||
resources:
|
||||
limits:
|
||||
memory: "500Mi"
|
||||
cpu: "2"
|
||||
ports:
|
||||
- containerPort: 8096
|
||||
env:
|
||||
- name: TZ
|
||||
value: Europe/Berlin
|
||||
volumeMounts:
|
||||
- name: jellyfin-config
|
||||
mountPath: /config
|
||||
- name: jellyfin-data
|
||||
mountPath: /media
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8096
|
||||
initialDelaySeconds: 100
|
||||
periodSeconds: 15
|
||||
volumes:
|
||||
- name: jellyfin-config
|
||||
persistentVolumeClaim:
|
||||
claimName: jellyfin-config-nfs
|
||||
- name: jellyfin-data
|
||||
persistentVolumeClaim:
|
||||
claimName: jellyfin-data-nfs
|
||||
|
Reference in New Issue
Block a user