From 02b710ee02bee3183e986ef2492dcaa02e5e85d3 Mon Sep 17 00:00:00 2001 From: Thumbscrew Date: Tue, 7 Nov 2023 00:23:00 +0100 Subject: [PATCH] feat: update Jellyfin healthcheck to use /health (#39) --- 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