Skip to content

Commit c5962ad

Browse files
feat: headless service allow not ready addresses
1 parent f082d7f commit c5962ad

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

charts/erigon/templates/stateful-node/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ metadata:
1010
{{- $componentLabel | nindent 4 }}
1111
spec:
1212
clusterIP: None # Headless service
13+
# Allow the P2P Service to forward traffic even if the POD is not Ready
14+
# Usefull for ReadinessProbes that require synced state
15+
publishNotReadyAddresses: true
1316
ports:
1417
{{- range $portName, $portNumber := $values.service.ports }}
1518
- port: {{ $portNumber }} # the port we expose on the Service, user configurable

charts/nimbus/templates/nimbus/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ metadata:
1010
{{- $componentLabel | nindent 4 }}
1111
spec:
1212
clusterIP: None # Headless service
13+
# Allow the P2P Service to forward traffic even if the POD is not Ready
14+
# Usefull for ReadinessProbes that require synced state
15+
publishNotReadyAddresses: true
1316
ports:
1417
{{- range $portName, $portNumber := $values.service.ports }}
1518
- port: {{ $portNumber }} # the port we expose on the Service, user configurable

0 commit comments

Comments
 (0)