Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Aug 23, 2024
1 parent 69c1336 commit 881fe98
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/evm-rollup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.25.4
version: 0.25.5

# 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
Expand Down
4 changes: 2 additions & 2 deletions charts/evm-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ 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.3.3
version: 0.3.4

dependencies:
- name: evm-rollup
version: 0.25.4
version: 0.25.5
repository: "file://../evm-rollup"
- name: composer
version: 0.1.1
Expand Down
6 changes: 4 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.7.1
version: 0.8.0

# 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.6.0"
appVersion: "0.8.0"

maintainers:
- name: wafflesvonmaple
Expand All @@ -30,3 +30,5 @@ maintainers:
url: astria.org
- name: joroshiba
url: astria.org
- name: quasystaty1
url: astria.org
3 changes: 3 additions & 0 deletions charts/sequencer-faucet/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ data:
SEQUENCER_FAUCET_PROXYCOUNT: "{{ .Values.config.proxyCount }}"
SEQUENCER_FAUCET_SEQUENCER_RPC_URL: "{{ .Values.config.sequencerRpcUrl}}"
SEQUENCER_FAUCET_AMOUNT: "{{ .Values.config.amount }}"
SEQUENCER_FAUCET_MINUTE: "{{ .Values.config.minutesBetweenRequests }}"
SEQUENCER_CHAIN_ID: "{{ .Values.config.sequencerChainId }}"
SEQUENCER_ADDRESS_PREFIX: "{{ .Values.config.addressPrefix }}"
SEQUENCER_NATIVE_DENOM: "{{ .Values.config.sequencerNativeDenom }}"
{{- if not .Values.secretProvider.enabled }}
SEQUENCER_FAUCET_PRIVATE_KEY: "{{ .Values.config.fundingPrivateKey.devContent }}"
{{- end }}
Expand Down
3 changes: 3 additions & 0 deletions charts/sequencer-faucet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ spec:
- -wallet.provider=$(SEQUENCER_FAUCET_SEQUENCER_RPC_URL)
- -wallet.privkey=$(SEQUENCER_FAUCET_PRIVATE_KEY)
- -faucet.amount=$(SEQUENCER_FAUCET_AMOUNT)
- -faucet.minutes=$(SEQUENCER_FAUCET_MINUTE)
- -faucet.asset=$(SEQUENCER_NATIVE_DENOM)
- -proxycount=$(SEQUENCER_FAUCET_PROXYCOUNT)
- -sequencer.chainId=$(SEQUENCER_CHAIN_ID)
- -bech32.prefix=$(SEQUENCER_ADDRESS_PREFIX)
envFrom:
- configMapRef:
name: sequencer-faucet-env
Expand Down
5 changes: 4 additions & 1 deletion charts/sequencer-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ config:
key: token
# The amount of token to give per request
amount: 1800
minutesBetweenRequests: 1440
addressPrefix: "astria"
sequencerNativeDenom: "nria"

images:
sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:sha-5c9d64c"
sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:0.8.0"

# When deploying in a production environment should use a secret provider
# This is configured for use with GCP, need to set own resource names
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1
version: 0.20.0
# 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.
Expand Down

0 comments on commit 881fe98

Please sign in to comment.