Skip to content

Commit 8ff8511

Browse files
committed
fix(charts): update liveness and readiness probe configurations in values.yaml
- Adjusted the liveness probe path to include a new max BlocksBehind value of 10000. - Updated the readiness probe path to /liveness for better clarity and accuracy in health checks.
1 parent 1c53865 commit 8ff8511

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

charts/network/charts/network-nodes/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ livenessProbe:
334334
# HTTP GET probe configuration hitting the Besu liveness endpoint.
335335
httpGet:
336336
# -- (string) HTTP path used for liveness probing.
337-
path: /readiness?minPeers=1&maxBlocksBehind=100
337+
path: /readiness?minPeers=1&maxBlocksBehind=10000
338338
# -- (string|int) Target container port serving the liveness endpoint.
339339
port: json-rpc
340340
# -- (int) Seconds to wait before starting liveness checks.
@@ -351,7 +351,7 @@ readinessProbe:
351351
# HTTP GET probe configuration hitting the Besu readiness endpoint.
352352
httpGet:
353353
# -- (string) HTTP path used for readiness probing, including peer/sync thresholds.
354-
path: /readiness?minPeers=0&maxBlocksBehind=100
354+
path: /liveness
355355
# -- (string|int) Target container port serving the readiness endpoint.
356356
port: json-rpc
357357
# -- (int) Seconds to wait before starting readiness checks.

0 commit comments

Comments
 (0)