Context
Currently, the APISIX chart only defines a readinessProbe (TCP on :9080) with no livenessProbe.
This means that if the APISIX process freezes (no crash, but unresponsive), the pod stays in Not Ready state indefinitely without ever being restarted by Kubernetes.
Expected behavior
A configurable livenessProbe should be available in values.yaml, disabled by default to avoid breaking existing deployments.
Context
Currently, the APISIX chart only defines a
readinessProbe(TCP on :9080) with nolivenessProbe.This means that if the APISIX process freezes (no crash, but unresponsive), the pod stays in
Not Readystate indefinitely without ever being restarted by Kubernetes.Expected behavior
A configurable
livenessProbeshould be available invalues.yaml, disabled by default to avoid breaking existing deployments.