Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/sequencer-faucet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions charts/sequencer-faucet/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions charts/sequencer-faucet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion charts/sequencer-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down