From 3e1aa342def80e2d8792075f34573847b9bbd859 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Wed, 10 Dec 2025 08:43:42 +0100 Subject: [PATCH] Bump version to 0.1.4 and adjust readiness probe delay Updated the chart version in `Chart.yaml` from 0.1.3 to 0.1.4 to reflect enhancements and bug fixes since the last release. In `deployment.yaml`, reduced the initial delay for both the liveness and readiness probes from 30 seconds to 10 seconds to help the application start responding faster after deployment. This change aims to improve the overall user experience by ensuring services are available sooner. No breaking changes are introduced with this update. --- charts/calibre-web/Chart.yaml | 2 +- charts/calibre-web/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/calibre-web/Chart.yaml b/charts/calibre-web/Chart.yaml index ca9dc6f..4ef1479 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.3 +version: 0.1.4 appVersion: 0.6.25-ls360 keywords: - calibre diff --git a/charts/calibre-web/templates/deployment.yaml b/charts/calibre-web/templates/deployment.yaml index 217ad95..d649c07 100644 --- a/charts/calibre-web/templates/deployment.yaml +++ b/charts/calibre-web/templates/deployment.yaml @@ -47,13 +47,13 @@ spec: port: http periodSeconds: 10 failureThreshold: 1 - initialDelaySeconds: 30 + initialDelaySeconds: 10 readinessProbe: httpGet: path: / port: http periodSeconds: 5 - initialDelaySeconds: 30 + initialDelaySeconds: 10 volumeMounts: - name: data mountPath: /books