Bump calibre-web version to 0.9.1 and adjust probes
All checks were successful
Build Helm Chart / helm-package (push) Successful in 4s

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.
This commit is contained in:
2025-12-10 14:49:15 +01:00
parent 3e1aa342de
commit cdcc32c588
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
name: calibre-web 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. 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 appVersion: 0.6.25-ls360
keywords: keywords:
- calibre - calibre

View File

@@ -46,13 +46,14 @@ spec:
path: / path: /
port: http port: http
periodSeconds: 10 periodSeconds: 10
failureThreshold: 1 failureThreshold: 3
initialDelaySeconds: 10 initialDelaySeconds: 10
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: http port: http
periodSeconds: 5 periodSeconds: 5
failureThreshold: 3
initialDelaySeconds: 10 initialDelaySeconds: 10
volumeMounts: volumeMounts:
- name: data - name: data