diff --git a/charts/sequencer-faucet/Chart.yaml b/charts/sequencer-faucet/Chart.yaml index bdcaebc..c0335f2 100644 --- a/charts/sequencer-faucet/Chart.yaml +++ b/charts/sequencer-faucet/Chart.yaml @@ -15,13 +15,13 @@ 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.8.1 +version: 0.8.2 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.8.0" +appVersion: "0.8.1" maintainers: - name: wafflesvonmaple diff --git a/charts/sequencer-faucet/templates/configmap.yaml b/charts/sequencer-faucet/templates/configmap.yaml index 727a7ae..832acea 100644 --- a/charts/sequencer-faucet/templates/configmap.yaml +++ b/charts/sequencer-faucet/templates/configmap.yaml @@ -12,6 +12,7 @@ data: SEQUENCER_CHAIN_ID: "{{ .Values.config.sequencerChainId }}" SEQUENCER_ADDRESS_PREFIX: "{{ .Values.config.addressPrefix }}" SEQUENCER_NATIVE_DENOM: "{{ .Values.config.sequencerNativeDenom }}" + SEQUENCER_FAUCET_PRECISION: "{{ .Values.config.faucetPrecision }}" {{- if not .Values.secretProvider.enabled }} SEQUENCER_FAUCET_PRIVATE_KEY: "{{ .Values.config.fundingPrivateKey.devContent }}" {{- end }} diff --git a/charts/sequencer-faucet/templates/deployment.yaml b/charts/sequencer-faucet/templates/deployment.yaml index 6f90212..8a3b0c9 100644 --- a/charts/sequencer-faucet/templates/deployment.yaml +++ b/charts/sequencer-faucet/templates/deployment.yaml @@ -31,6 +31,7 @@ spec: - -proxycount=$(SEQUENCER_FAUCET_PROXYCOUNT) - -sequencer.chainId=$(SEQUENCER_CHAIN_ID) - -bech32.prefix=$(SEQUENCER_ADDRESS_PREFIX) + - -faucet.precision=$(SEQUENCER_FAUCET_PRECISION) envFrom: - configMapRef: name: sequencer-faucet-env diff --git a/charts/sequencer-faucet/values.yaml b/charts/sequencer-faucet/values.yaml index ffa272b..8208b7a 100644 --- a/charts/sequencer-faucet/values.yaml +++ b/charts/sequencer-faucet/values.yaml @@ -19,12 +19,13 @@ config: key: token # The amount of token to give per request amount: 1800 + faucetPrecision: 9 minutesBetweenRequests: 1440 addressPrefix: "astria" sequencerNativeDenom: "nria" images: - sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:0.8.0" + sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:0.8.1" pullPolicy: IfNotPresent # When deploying in a production environment should use a secret provider