Skip to content

Commit 6d58c24

Browse files
docs: adjust comments
1 parent 099d7a7 commit 6d58c24

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

charts/erigon/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,9 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
188188
| statefulNode.service.ports.http-jsonrpc | Service Port to expose JSON-RPC interface on | int | `8545` |
189189
| statefulNode.service.ports.http-metrics | Service Port to expose Prometheus metrics on | int | `6060` |
190190
| statefulNode.service.ports.ws-rpc | Service Port to expose WS-RPC interface on | int | `8546` |
191-
| statefulNode.service.publishNotReadyAddresses | Toggle publishing not ready addresses for headless and p2p services | object | `{"headless":false,"p2p":false}` |
192-
| statefulNode.service.topologyAwareRouting | Toggle for topology aware routing | object | `{"enabled":false}` |
191+
| statefulNode.service.publishNotReadyAddresses.headless | Toggle publishing not ready addresses for headless service | bool | `false` |
192+
| statefulNode.service.publishNotReadyAddresses.p2p | Toggle publishing not ready addresses for p2p service | bool | `false` |
193+
| statefulNode.service.topologyAwareRouting.enabled | Toggle for topology aware routing | bool | `false` |
193194
| statefulNode.service.type | | string | `"ClusterIP"` |
194195
| statefulNode.startupProbe | Sets a startupProbe configuration for the container | object | `{}` |
195196
| statefulNode.terminationGracePeriodSeconds | Amount of time to wait before force-killing the Erigon process | int | `60` |

charts/erigon/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,13 @@ statefulNode:
137137
fsGroup: 101337
138138

139139
service:
140-
# -- Toggle for topology aware routing
141140
topologyAwareRouting:
141+
# -- Toggle for topology aware routing
142142
enabled: false
143-
# -- Toggle publishing not ready addresses for headless and p2p services
144143
publishNotReadyAddresses:
144+
# -- Toggle publishing not ready addresses for headless service
145145
headless: false
146+
# -- Toggle publishing not ready addresses for p2p service
146147
p2p: false
147148
type: ClusterIP
148149
ports:

charts/nimbus/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,9 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
135135
| nimbus.rollingUpdatePartition | When using a RollingUpdate update strategy in the StatefulSet, sets a partition index to only update PODs with that index or higher | int | `0` |
136136
| nimbus.service.ports.http-metrics | Service Port to expose Prometheus metrics on | int | `8008` |
137137
| nimbus.service.ports.http-nimbus | Service Port to expose JSON-RPC interface on | int | `5052` |
138-
| nimbus.service.publishNotReadyAddresses | Toggle publishing not ready addresses for headless and p2p services | object | `{"headless":false,"p2p":false}` |
139-
| nimbus.service.topologyAwareRouting | Toggle for topology aware routing | object | `{"enabled":false}` |
138+
| nimbus.service.publishNotReadyAddresses.headless | Toggle publishing not ready addresses for headless service | bool | `false` |
139+
| nimbus.service.publishNotReadyAddresses.p2p | Toggle publishing not ready addresses for p2p service | bool | `false` |
140+
| nimbus.service.topologyAwareRouting.enabled | Toggle for topology aware routing | bool | `false` |
140141
| nimbus.service.type | | string | `"ClusterIP"` |
141142
| nimbus.startupProbe | Sets a startupProbe configuration for the container | object | `{}` |
142143
| nimbus.terminationGracePeriodSeconds | Amount of time to wait before force-killing the container | int | `60` |

charts/nimbus/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,13 @@ nimbus:
133133
fsGroup: 101337
134134

135135
service:
136-
# -- Toggle for topology aware routing
137136
topologyAwareRouting:
137+
# -- Toggle for topology aware routing
138138
enabled: false
139-
# -- Toggle publishing not ready addresses for headless and p2p services
140139
publishNotReadyAddresses:
140+
# -- Toggle publishing not ready addresses for headless service
141141
headless: false
142+
# -- Toggle publishing not ready addresses for p2p service
142143
p2p: false
143144
type: ClusterIP
144145
ports:

0 commit comments

Comments
 (0)