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
fix(charts): refine init container and probe configurations in README.md
- Updated init container descriptions for shared and validator pods.
- Adjusted liveness and readiness probe configurations for clarity and accuracy, including paths and thresholds.
| livenessProbe.failureThreshold | int |`3`| Consecutive failures required before the container is restarted. |
85
-
| livenessProbe.httpGet.path | string |`"/readiness?minPeers=1&maxBlocksBehind=100"`| HTTP path used for liveness probing. |
85
+
| livenessProbe.httpGet.path | string |`"/readiness?minPeers=1&maxBlocksBehind=10000"`| HTTP path used for liveness probing. |
86
86
| livenessProbe.httpGet.port | string|int |`"json-rpc"`| Target container port serving the liveness endpoint. |
87
87
| livenessProbe.initialDelaySeconds | int |`30`| Seconds to wait before starting liveness checks. |
88
88
| livenessProbe.periodSeconds | int |`10`| Frequency of liveness checks in seconds. |
@@ -119,7 +119,7 @@ A Helm chart for Kubernetes
119
119
| podLabels | object |`{}`||
120
120
| podSecurityContext | object |`{}`||
121
121
| readinessProbe.failureThreshold | int |`3`| Consecutive failures required before the pod is considered unready. |
122
-
| readinessProbe.httpGet.path | string |`"/readiness?minPeers=0&maxBlocksBehind=100"`| HTTP path used for readiness probing, including peer/sync thresholds. |
122
+
| readinessProbe.httpGet.path | string |`"/liveness"`| HTTP path used for readiness probing, including peer/sync thresholds. |
123
123
| readinessProbe.httpGet.port | string|int |`"json-rpc"`| Target container port serving the readiness endpoint. |
124
124
| readinessProbe.initialDelaySeconds | int |`15`| Seconds to wait before starting readiness checks. |
125
125
| readinessProbe.periodSeconds | int |`5`| Frequency of readiness checks in seconds. |
0 commit comments