Skip to content

Commit 90f773b

Browse files
committed
Loosen health checks for jellyfin/jellyseerr
These applications can have long load times and too strict health checks can cause premature restarts.
1 parent 9d35b66 commit 90f773b

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

charts/jellyfin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: jellyfin
33
description: The Free Software Media System
44
type: application
5-
version: 0.2.5
5+
version: 0.2.6
66
appVersion: "release-10.10.5"
77
icon: "https://jellyfin.org/images/logo.svg"
88
dependencies:

charts/jellyfin/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,17 @@ livenessProbe:
6868
httpGet:
6969
path: /health
7070
port: http
71+
initialDelaySeconds: 30
72+
periodSeconds: 30
73+
timeoutSeconds: 10
74+
7175
readinessProbe:
7276
httpGet:
7377
path: /health
7478
port: http
79+
initialDelaySeconds: 30
80+
periodSeconds: 30
81+
timeoutSeconds: 10
7582

7683
# Additional volumes on the output Deployment definition.
7784
volumes: []

charts/jellyseerr/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: jellyseerr
33
description: Fork of overseerr for jellyfin support
44
type: application
5-
version: 0.2.3
5+
version: 0.2.4
66
appVersion: "release-2.3.0"
77
icon: "https://docs.jellyseerr.dev/img/logo.svg"
88
dependencies:

charts/jellyseerr/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,17 @@ livenessProbe:
6868
httpGet:
6969
path: /api/v1/status
7070
port: http
71+
initialDelaySeconds: 30
72+
periodSeconds: 30
73+
timeoutSeconds: 10
74+
7175
readinessProbe:
7276
httpGet:
7377
path: /api/v1/status
7478
port: http
79+
initialDelaySeconds: 30
80+
periodSeconds: 30
81+
timeoutSeconds: 10
7582

7683
# Additional volumes on the output Deployment definition.
7784
volumes: []

0 commit comments

Comments
 (0)