Skip to content

Commit

Permalink
Mycodecrafting/sequencer seed node (#1188)
Browse files Browse the repository at this point in the history
## Summary
Config to allow running a sequencer node in seed mode.
  • Loading branch information
mycodecrafting authored Jun 17, 2024
1 parent 5f117cb commit 0180cbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.15.7
version: 0.15.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer/files/cometbft/config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ pex = true
# peers. If another node asks it for addresses, it responds and disconnects.
#
# Does not work if the peer-exchange reactor is disabled.
seed_mode = false
seed_mode = {{ .Values.config.cometBFT.p2p.seedMode }}

# Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
private_peer_ids = "{{ join "," .Values.config.cometBFT.p2p.privatePeers }}"
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ config:
privatePeers: []
# Seed mode, in which node constantly crawls the network and looks for
# peers. If another node asks it for addresses, it responds and disconnects.
seed_mode: false
seedMode: false
# These secrets will be generated using the devContent values turned into JSON
# and stored unsafely as config maps. Unless SecretProvider is enabled.
# Where the secret parameters should be then updated to suit your secret provider
Expand Down

0 comments on commit 0180cbf

Please sign in to comment.