diff --git a/charts/rollup/Chart.yaml b/charts/rollup/Chart.yaml index 610d9809..33ca5f51 100644 --- a/charts/rollup/Chart.yaml +++ b/charts/rollup/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.7.0 +version: 0.7.1 # 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/rollup/templates/configmap.yaml b/charts/rollup/templates/configmap.yaml index c74e8c31..8f68cfee 100644 --- a/charts/rollup/templates/configmap.yaml +++ b/charts/rollup/templates/configmap.yaml @@ -51,6 +51,7 @@ metadata: name: {{ .Values.config.rollup.name }}-faucet-env namespace: {{ .Values.global.namespace }} data: + ETH_FAUCET_PROXYCOUNT: "{{ .Values.config.faucet.proxyCount }}" ETH_FAUCET_PORT: "{{ .Values.ports.faucet }}" ETH_FAUCET_EVM_PROVIDER_URL: "http://{{ .Values.config.rollup.name }}-evm-service:{{ .Values.ports.jsonRPC }}" ETH_FAUCET_AMOUNT: "{{ .Values.config.faucet.amount }}" diff --git a/charts/rollup/templates/deployment.yaml b/charts/rollup/templates/deployment.yaml index fb7a4ef8..28b4dbc1 100644 --- a/charts/rollup/templates/deployment.yaml +++ b/charts/rollup/templates/deployment.yaml @@ -134,6 +134,7 @@ spec: - -wallet.provider=$(ETH_FAUCET_EVM_PROVIDER_URL) - -wallet.privkey=$(ETH_FAUCET_EVM_PRIVATE_KEY) - -faucet.amount=$(ETH_FAUCET_AMOUNT) + - -proxycount=$(ETH_FAUCET_PROXY_COUNT) image: {{ .Values.images.faucet }} envFrom: - configMapRef: diff --git a/charts/rollup/values.yaml b/charts/rollup/values.yaml index c3d34943..9ebceae7 100644 --- a/charts/rollup/values.yaml +++ b/charts/rollup/values.yaml @@ -39,6 +39,7 @@ config: initialEthereumL1BlockHeight: 1 faucet: + proxyCount: 1 # The account from which the faucet disburses funds, likely want to have # the corresponding account given a balance in genesis accounts. # Note: When secretProvider.enabled is true the secret provided by diff --git a/charts/sequencer-faucet/Chart.yaml b/charts/sequencer-faucet/Chart.yaml index caaa8bbf..b6d2ff4e 100644 --- a/charts/sequencer-faucet/Chart.yaml +++ b/charts/sequencer-faucet/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.4.0 +version: 0.4.1 # 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-faucet/templates/configmap.yaml b/charts/sequencer-faucet/templates/configmap.yaml index 3c22d9c3..1647f808 100644 --- a/charts/sequencer-faucet/templates/configmap.yaml +++ b/charts/sequencer-faucet/templates/configmap.yaml @@ -5,6 +5,7 @@ metadata: namespace: {{ .Values.global.namespace }} data: SEQUENCER_FAUCET_PORT: "{{ .Values.ports.faucet }}" + SEQUENCER_FAUCET_PROXYCOUNT: "{{ .Values.config.proxyCount }}" SEQUENCER_FAUCET_SEQUENCER_RPC_URL: "{{ .Values.config.sequencerRpcUrl}}" SEQUENCER_FAUCET_AMOUNT: "{{ .Values.config.amount }}" {{- if not .Values.secretProvider.enabled }} diff --git a/charts/sequencer-faucet/templates/deployment.yaml b/charts/sequencer-faucet/templates/deployment.yaml index 97dae9c8..c1489d5d 100644 --- a/charts/sequencer-faucet/templates/deployment.yaml +++ b/charts/sequencer-faucet/templates/deployment.yaml @@ -25,6 +25,7 @@ spec: - -wallet.provider=$(SEQUENCER_FAUCET_SEQUENCER_RPC_URL) - -wallet.privkey=$(SEQUENCER_FAUCET_PRIVATE_KEY) - -faucet.amount=$(SEQUENCER_FAUCET_AMOUNT) + - -proxycount=$(SEQUENCER_FAUCET_PROXY_COUNT) envFrom: - configMapRef: name: sequencer-faucet-env diff --git a/charts/sequencer-faucet/values.yaml b/charts/sequencer-faucet/values.yaml index 76a5c8ac..fc0ec140 100644 --- a/charts/sequencer-faucet/values.yaml +++ b/charts/sequencer-faucet/values.yaml @@ -3,6 +3,7 @@ global: replicaCount: 1 config: + proxyCount: 1 sequencerRpcUrl: http://node0-sequencer-rpc-service.astria-dev-cluster.svc.cluster.local:26657 # This private key will be replaced with `sequencerPrivateKey` when enabled # For testing purposes only, do not use except with local development cluster,