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

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.
This commit was merged in pull request #66.
This commit is contained in:
2025-12-10 08:37:31 +01:00
parent 4425a0e703
commit 139c8c6d5f
2 changed files with 6 additions and 7 deletions

View File

@@ -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