From cdcc32c58865b2bb5b20ae6d9e01916f9c976979 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Wed, 10 Dec 2025 14:49:15 +0100 Subject: [PATCH] Bump calibre-web version to 0.9.1 and adjust probes Updated the calibre-web Helm chart version from 0.1.4 to 0.9.1 to reflect the latest release and ensure compatibility with new features and fixes. Additionally, modified the readiness and liveness probes in the deployment configuration by increasing the failureThreshold from 1 to 3. This change is intended to provide a more resilient deployment, allowing for a few additional failures before the pod is marked as unhealthy, which can be beneficial in environments with intermittent issues. No breaking changes are introduced in this update. --- charts/calibre-web/Chart.yaml | 2 +- charts/calibre-web/templates/deployment.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/calibre-web/Chart.yaml b/charts/calibre-web/Chart.yaml index 4ef1479..9db31a3 100644 --- a/charts/calibre-web/Chart.yaml +++ b/charts/calibre-web/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: calibre-web description: Calibre-Web is a web app that offers a clean and intuitive interface for browsing, reading, and downloading eBooks using a valid Calibre database. -version: 0.1.4 +version: 0.9.1 appVersion: 0.6.25-ls360 keywords: - calibre diff --git a/charts/calibre-web/templates/deployment.yaml b/charts/calibre-web/templates/deployment.yaml index d649c07..79425ee 100644 --- a/charts/calibre-web/templates/deployment.yaml +++ b/charts/calibre-web/templates/deployment.yaml @@ -46,13 +46,14 @@ spec: path: / port: http periodSeconds: 10 - failureThreshold: 1 + failureThreshold: 3 initialDelaySeconds: 10 readinessProbe: httpGet: path: / port: http periodSeconds: 5 + failureThreshold: 3 initialDelaySeconds: 10 volumeMounts: - name: data