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
k8s runs liveness and readiness checks will restart the pods that are not responsive. In order to not have the debugging session dropped because of the pod restarting, you have to comment `livenessProbe` and `readinessProbe` sections in `charts/pocket/templates/statefulset.yaml`
248
+
249
+
```yaml
250
+
# Comment this section disable liveness checks for debugging
251
+
livenessProbe:
252
+
httpGet:
253
+
path: /v1/health
254
+
port: rpc
255
+
# Comment this section disable readiness checks for debugging
0 commit comments