Commit 764b7dc0 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

fix: network params setting invalid value for min/max configs (#353)

parent 2c3b6a2f
...@@ -32,6 +32,7 @@ jobs: ...@@ -32,6 +32,7 @@ jobs:
"./.github/tests/mev.yaml", "./.github/tests/mev.yaml",
"./.github/tests/mev-mock.yaml", "./.github/tests/mev-mock.yaml",
"./.github/tests/mix-with-tools.yaml", "./.github/tests/mix-with-tools.yaml",
"./network_params.yaml"
] ]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
......
...@@ -169,18 +169,18 @@ participants: ...@@ -169,18 +169,18 @@ participants:
# CPU is milicores # CPU is milicores
# RAM is in MB # RAM is in MB
# Defaults are set per client # Defaults are set per client
el_min_cpu: '' el_min_cpu: 0
el_max_cpu: '' el_max_cpu: 0
el_min_mem: '' el_min_mem: 0
el_max_mem: '' el_max_mem: 0
bn_min_cpu: '' bn_min_cpu: 0
bn_max_cpu: '' bn_max_cpu: 0
bn_min_mem: '' bn_min_mem: 0
bn_max_mem: '' bn_max_mem: 0
v_min_cpu: '' v_min_cpu: 0
v_max_cpu: '' v_max_cpu: 0
v_min_mem: '' v_min_mem: 0
v_max_mem: '' v_max_mem: 0
# Snooper can be enabled with the `snooper_enabled` flag per client or globally # Snooper can be enabled with the `snooper_enabled` flag per client or globally
# Defaults to false # Defaults to false
......
...@@ -12,18 +12,18 @@ participants: ...@@ -12,18 +12,18 @@ participants:
validator_count: null validator_count: null
snooper_enabled: false snooper_enabled: false
ethereum_metrics_exporter_enabled: false ethereum_metrics_exporter_enabled: false
el_min_cpu: '' el_min_cpu: 0
el_max_cpu: '' el_max_cpu: 0
el_min_mem: '' el_min_mem: 0
el_max_mem: '' el_max_mem: 0
bn_min_cpu: '' bn_min_cpu: 0
bn_max_cpu: '' bn_max_cpu: 0
bn_min_mem: '' bn_min_mem: 0
bn_max_mem: '' bn_max_mem: 0
v_min_cpu: '' v_min_cpu: 0
v_max_cpu: '' v_max_cpu: 0
v_min_mem: '' v_min_mem: 0
v_max_mem: '' v_max_mem: 0
count: 2 count: 2
network_params: network_params:
network_id: '3151908' network_id: '3151908'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment