Compare commits

..

1 Commits

Author SHA1 Message Date
02b710ee02 feat: update Jellyfin healthcheck to use /health (#39) 2023-11-06 23:23:00 +00:00
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.0 version: 1.1.0
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to

View File

@ -39,12 +39,12 @@ spec:
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /health
port: http port: http
periodSeconds: 10 periodSeconds: 10
startupProbe: startupProbe:
httpGet: httpGet:
path: / path: /health
port: http port: http
periodSeconds: 10 periodSeconds: 10
failureThreshold: 6 failureThreshold: 6