From 139c8c6d5fe86a4ac358a7a5ffd10480c6ffec45 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Wed, 10 Dec 2025 08:37:31 +0100 Subject: [PATCH] Bump calibre-web version to 0.1.3 and update probes Updated the Chart.yaml version from 0.1.2 to 0.1.3 to reflect the new release of the calibre-web application. Modified the liveness and readiness probes in deployment.yaml to enhance the application's health checks. The liveness probe now has a failure threshold of 1 and an initial delay of 30 seconds, while the readiness probe has an initial delay of 30 seconds as well but with a period of 5 seconds. These changes were made to improve the deployment stability and response time of the application, ensuring quicker feedback on the health status of the pods. --- charts/calibre-web/Chart.yaml | 2 +- charts/calibre-web/templates/deployment.yaml | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/charts/calibre-web/Chart.yaml b/charts/calibre-web/Chart.yaml index 6f01f6b..ca9dc6f 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.2 +version: 0.1.3 appVersion: 0.6.25-ls360 keywords: - calibre diff --git a/charts/calibre-web/templates/deployment.yaml b/charts/calibre-web/templates/deployment.yaml index 6650274..217ad95 100644 --- a/charts/calibre-web/templates/deployment.yaml +++ b/charts/calibre-web/templates/deployment.yaml @@ -41,20 +41,19 @@ spec: - name: http containerPort: 8083 protocol: TCP - startupProbe: - httpGet: - path: / - port: http - failureThreshold: 30 - periodSeconds: 5 livenessProbe: httpGet: path: / port: http + periodSeconds: 10 + failureThreshold: 1 + initialDelaySeconds: 30 readinessProbe: httpGet: path: / port: http + periodSeconds: 5 + initialDelaySeconds: 30 volumeMounts: - name: data mountPath: /books