apisix-helm-chart
apisix-helm-chart copied to clipboard
Request to add livenessProbe support in Helm chart
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