diff --git a/charts/sequencer/Chart.yaml b/charts/sequencer/Chart.yaml index 398d17c..5768d10 100644 --- a/charts/sequencer/Chart.yaml +++ b/charts/sequencer/Chart.yaml @@ -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 diff --git a/charts/sequencer/files/cometbft/config/config.toml b/charts/sequencer/files/cometbft/config/config.toml index b1080c9..929a77d 100644 --- a/charts/sequencer/files/cometbft/config/config.toml +++ b/charts/sequencer/files/cometbft/config/config.toml @@ -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 }}" diff --git a/charts/sequencer/values.yaml b/charts/sequencer/values.yaml index 72a13d4..d25c6a0 100644 --- a/charts/sequencer/values.yaml +++ b/charts/sequencer/values.yaml @@ -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