From 71e1cecb6d37e23404b51e5959fc8866223eeb70 Mon Sep 17 00:00:00 2001 From: Ivan Vandot Date: Thu, 29 Sep 2022 12:42:09 +0200 Subject: [PATCH] fix: quote gasLimit --- charts/geth-swap/Chart.yaml | 2 +- charts/geth-swap/templates/genesis.configmap.yaml | 2 +- charts/geth-swap/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/geth-swap/Chart.yaml b/charts/geth-swap/Chart.yaml index 87d7d96..f7017bd 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.6 +version: 0.3.7 # 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 59c8add..6334717 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": {{ .Values.geth.genesis.gasLimit }}, + "gasLimit": {{ .Values.geth.genesis.gasLimit | quote }}, "difficulty": "0x1", "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000", "coinbase": "0x0000000000000000000000000000000000000000", diff --git a/charts/geth-swap/values.yaml b/charts/geth-swap/values.yaml index 9f68882..dc103e4 100644 --- a/charts/geth-swap/values.yaml +++ b/charts/geth-swap/values.yaml @@ -25,7 +25,7 @@ geth: cache: 512 genesis: networkid: 12345 - gasLimit: 0x47b760 + gasLimit: "0x47b760" clique: period: 15 epoch: 30000