This commit is contained in:
2026-03-16 09:40:06 +00:00
parent b1589b892c
commit 56e03ea421
2 changed files with 71 additions and 28 deletions

View File

@@ -211,19 +211,40 @@ spec:
image: linuxserver/jellyfin
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8096
- containerPort: 8920
- containerPort: 7359 #udp
- containerPort: 1900 #udp
#livenessProbe:
# httpGet:
# path: /health
# port: 8096
# #httpHeaders:
# #- name: Custom-Header
# # value: Awesome
# initialDelaySeconds: 30
# periodSeconds: 5
- name: http
containerPort: 8096
- name: https
containerPort: 8920
- name: discovery
containerPort: 7359
protocol: UDP
- name: dlna
containerPort: 1900
protocol: UDP
startupProbe:
httpGet:
path: /health
port: http
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 30
readinessProbe:
httpGet:
path: /health
port: http
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
livenessProbe:
httpGet:
path: /health
port: http
periodSeconds: 20
timeoutSeconds: 5
failureThreshold: 6
env:
- name: PUID
value: "1000"