From ddb7f4ed9ff3a10a0b9e7339c622fafcb199aaff Mon Sep 17 00:00:00 2001 From: Ivan Vandot Date: Wed, 28 Sep 2022 13:11:26 +0200 Subject: [PATCH] chore: add gasLimit option to geth-swap --- charts/geth-swap/Chart.yaml | 2 +- charts/geth-swap/templates/genesis.configmap.yaml | 2 +- charts/geth-swap/values.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/geth-swap/Chart.yaml b/charts/geth-swap/Chart.yaml index c56a989..87d7d96 100644 --- a/charts/geth-swap/Chart.yaml +++ b/charts/geth-swap/Chart.yaml @@ -20,7 +20,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. -version: 0.3.5 +version: 0.3.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/charts/geth-swap/templates/genesis.configmap.yaml b/charts/geth-swap/templates/genesis.configmap.yaml index 282b7e5..59c8add 100644 --- a/charts/geth-swap/templates/genesis.configmap.yaml +++ b/charts/geth-swap/templates/genesis.configmap.yaml @@ -28,7 +28,7 @@ data: "nonce": "0x0", "timestamp": "0x5e4bc3a6", "extraData": "0x0000000000000000000000000000000000000000000000000000000000000000{{ .Values.geth.genesis.validatorAddress }}0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "gasLimit": "0x47b760", + "gasLimit": {{ .Values.geth.genesis.gasLimit }}, "difficulty": "0x1", "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000", "coinbase": "0x0000000000000000000000000000000000000000", diff --git a/charts/geth-swap/values.yaml b/charts/geth-swap/values.yaml index 6d02aae..9f68882 100644 --- a/charts/geth-swap/values.yaml +++ b/charts/geth-swap/values.yaml @@ -25,6 +25,7 @@ geth: cache: 512 genesis: networkid: 12345 + gasLimit: 0x47b760 clique: period: 15 epoch: 30000