apisix-helm-chart icon indicating copy to clipboard operation
apisix-helm-chart copied to clipboard

Request to add livenessProbe support in Helm chart

Open jagadeesh-kancherla-tfs opened this issue 5 months ago • 0 comments

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

jagadeesh-kancherla-tfs avatar Sep 09 '24 04:09 jagadeesh-kancherla-tfs