🔧(helm) enable liveness and readiness probes on backend deployment
Enable the probes to track liveness and readiness of any backend pods. Helm values were updated to enable the relevant configuration.
This commit is contained in:
committed by
aleb_the_flash
parent
b3b1343796
commit
e8a241adbc
@@ -104,20 +104,25 @@ backend:
|
||||
- "--no-input"
|
||||
restartPolicy: Never
|
||||
|
||||
## @param backend.probes Configure probe for backend
|
||||
## @extra backend.probes.liveness.path Configure path for backend HTTP liveness probe
|
||||
## @extra backend.probes.liveness.targetPort Configure port for backend HTTP liveness probe
|
||||
## @extra backend.probes.liveness.initialDelaySeconds Configure initial delay for backend liveness probe
|
||||
## @extra backend.probes.liveness.initialDelaySeconds Configure timeout for backend liveness probe
|
||||
## @extra backend.probes.startup.path Configure path for backend HTTP startup probe
|
||||
## @extra backend.probes.startup.targetPort Configure port for backend HTTP startup probe
|
||||
## @extra backend.probes.startup.initialDelaySeconds Configure initial delay for backend startup probe
|
||||
## @extra backend.probes.startup.initialDelaySeconds Configure timeout for backend startup probe
|
||||
## @extra backend.probes.readiness.path Configure path for backend HTTP readiness probe
|
||||
## @extra backend.probes.readiness.targetPort Configure port for backend HTTP readiness probe
|
||||
## @extra backend.probes.readiness.initialDelaySeconds Configure initial delay for backend readiness probe
|
||||
## @extra backend.probes.readiness.initialDelaySeconds Configure timeout for backend readiness probe
|
||||
probes: {}
|
||||
## @param backend.probes.liveness.path [nullable] Configure path for backend HTTP liveness probe
|
||||
## @param backend.probes.liveness.targetPort [nullable] Configure port for backend HTTP liveness probe
|
||||
## @param backend.probes.liveness.initialDelaySeconds [nullable] Configure initial delay for backend liveness probe
|
||||
## @param backend.probes.liveness.initialDelaySeconds [nullable] Configure timeout for backend liveness probe
|
||||
## @param backend.probes.startup.path [nullable] Configure path for backend HTTP startup probe
|
||||
## @param backend.probes.startup.targetPort [nullable] Configure port for backend HTTP startup probe
|
||||
## @param backend.probes.startup.initialDelaySeconds [nullable] Configure initial delay for backend startup probe
|
||||
## @param backend.probes.startup.initialDelaySeconds [nullable] Configure timeout for backend startup probe
|
||||
## @param backend.probes.readiness.path [nullable] Configure path for backend HTTP readiness probe
|
||||
## @param backend.probes.readiness.targetPort [nullable] Configure port for backend HTTP readiness probe
|
||||
## @param backend.probes.readiness.initialDelaySeconds [nullable] Configure initial delay for backend readiness probe
|
||||
## @param backend.probes.readiness.initialDelaySeconds [nullable] Configure timeout for backend readiness probe
|
||||
probes:
|
||||
liveness:
|
||||
path: /__heartbeat__
|
||||
initialDelaySeconds: 10
|
||||
readiness:
|
||||
path: /__lbheartbeat__
|
||||
initialDelaySeconds: 10
|
||||
|
||||
## @param backend.resources Resource requirements for the backend container
|
||||
resources: {}
|
||||
|
||||
Reference in New Issue
Block a user