jagadeesh-kancherla-tfs opened a new issue, #781:
URL: https://github.com/apache/apisix-helm-chart/issues/781
I noticed that there is currently no option to configure livenessProbe for
the containers in the Helm chart. This is an important feature for ensuring the
health and resiliency of deployments in Kubernetes.
Could you please consider adding support for livenessProbe configuration in
the Helm chart, similar to how readinessProbe is supported? This would allow
users to set health checks for the containers to automatically restart them in
case of failures.
Proposed Solution:
It would be beneficial to include options for livenessProbe in the
values.yaml file. Here is an example of what could be added:
livenessProbe:
httpGet:
path: /healthz
port: 9080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 3
successThreshold: 1
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]