From 5f23efca116c70b25675f2051d9831f294df7a2c Mon Sep 17 00:00:00 2001 From: James Date: Mon, 6 Nov 2023 23:21:46 +0000 Subject: [PATCH] update healthcheck to use /health --- charts/jellyfin/Chart.yaml | 2 +- charts/jellyfin/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/jellyfin/Chart.yaml b/charts/jellyfin/Chart.yaml index a69da54..bea5ca0 100644 --- a/charts/jellyfin/Chart.yaml +++ b/charts/jellyfin/Chart.yaml @@ -25,7 +25,7 @@ type: application # 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. # 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 # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/jellyfin/templates/deployment.yaml b/charts/jellyfin/templates/deployment.yaml index f1c7832..7f21d83 100644 --- a/charts/jellyfin/templates/deployment.yaml +++ b/charts/jellyfin/templates/deployment.yaml @@ -39,12 +39,12 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /health port: http periodSeconds: 10 startupProbe: httpGet: - path: / + path: /health port: http periodSeconds: 10 failureThreshold: 6