mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
Use /healthz for liveness and readiness probes in beacon chain (#2180)
* lower the p2p peer count minimum for a successful status * add liveness and health probes * 5m instead of 2m
This commit is contained in:
parent
56210fd81f
commit
9a6a275d3d
@ -77,8 +77,17 @@ spec:
|
|||||||
key: DEPOSIT_CONTRACT_ADDRESS
|
key: DEPOSIT_CONTRACT_ADDRESS
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
initialDelaySeconds: 60
|
initialDelaySeconds: 60
|
||||||
tcpSocket:
|
httpGet:
|
||||||
port: 4000
|
path: /healthz
|
||||||
|
port: 9090
|
||||||
|
livenessProbe:
|
||||||
|
initialDelaySeconds: 60
|
||||||
|
failureThreshold: 30 # Fails consistently for 5 minutes
|
||||||
|
periodSeconds: 10
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 9090
|
||||||
|
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
name: beacondb
|
name: beacondb
|
||||||
|
Loading…
Reference in New Issue
Block a user