🐛(helm) reverse liveness and readiness for backend deployment

The liveness and readiness are reversed. The liveness was using the
heartbeat process that is cheking all django checks and the database
connection.

Signed-off-by: Laurent Paoletti <[email protected]>
This commit is contained in:
Manuel Raynaud
2026-02-19 19:46:45 +01:00
committed by Laurent Paoletti
parent 5d895d15f9
commit e60c938d44
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -23,6 +23,7 @@ and this project adheres to
- 💚(docker) vendor mime.types file instead of fetching from Apache SVN
- 🐛(front) fix math formulas and carousel translations
- 🐛(helm) reverse liveness and readiness for backend deployment
## [0.0.13] - 2026-02-09
+2 -2
View File
@@ -234,10 +234,10 @@ backend:
## @param backend.probes.readiness.initialDelaySeconds [nullable] Configure timeout for backend readiness probe
probes:
liveness:
path: /__heartbeat__
path: /__lbheartbeat__
initialDelaySeconds: 10
readiness:
path: /__lbheartbeat__
path: /__heartbeat__
initialDelaySeconds: 10
## @param backend.resources Resource requirements for the backend container