You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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
The text was updated successfully, but these errors were encountered: