Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auctioneer: update evm-rollup charts for auctioneer #1830

Draft
wants to merge 10 commits into
base: itamarreif/auctioneer/eng-824
Choose a base branch
from
4 changes: 2 additions & 2 deletions charts/evm-rollup/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: 1.0.0
version: 1.0.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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.0.0"
appVersion: "1.0.1"

maintainers:
- name: wafflesvonmaple
Expand Down
3 changes: 2 additions & 1 deletion charts/evm-rollup/files/genesis/geth-genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@
"astriaBridgeAddresses": {{ toPrettyJson .Values.genesis.bridgeAddresses | indent 8 | trim }},
"astriaFeeCollectors": {{ toPrettyJson .Values.genesis.feeCollectors | indent 8 | trim }},
"astriaEIP1559Params": {{ toPrettyJson .Values.genesis.eip1559Params | indent 8 | trim }},
"astriaSequencerAddressPrefix": "{{ .Values.genesis.sequencerAddressPrefix }}"
"astriaSequencerAddressPrefix": "{{ .Values.genesis.sequencerAddressPrefix }}"{{- if .Values.global.dev }},{{ end }}
{{- if not .Values.global.dev }}
{{- else }}
"astriaAuctioneerAddresses": {{ toPrettyJson .Values.genesis.auctioneerAddresses | indent 8 | trim }}
{{- end }}
},
"difficulty": "0",
Expand Down
3 changes: 3 additions & 0 deletions charts/evm-rollup/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ spec:
- name: ws-rpc-svc
port: {{ .Values.ports.wsRPC }}
targetPort: ws-rpc
- name: execution-grpc-svc
port: {{ .Values.ports.executionGRPC }}
targetPort: execution-grpc
---
{{- if .Values.metrics.enabled }}
kind: Service
Expand Down
10 changes: 6 additions & 4 deletions charts/evm-rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ global:

images:
geth:
repo: ghcr.io/astriaorg/astria-geth
repo: ghcr.io/astriaorg/flame
pullPolicy: IfNotPresent
tag: 1.0.0
devTag: latest
tag: "sha-e389b82"
devTag: "sha-e389b82"
overrideTag: ""
conductor:
repo: ghcr.io/astriaorg/conductor
Expand Down Expand Up @@ -70,7 +70,8 @@ genesis:
# minBaseFee: 0
# elasticityMultiplier: 2
# baseFeeChangeDenominator: 8

auctioneerAddresses: {}
# 1: "astria1ferdmm38w7zr4ankmntst0g0qg8e7ygeu3vxcy"
## Standard Eth Genesis config values
# An EVM chain number id, different from the astria rollup name
chainId: ""
Expand Down Expand Up @@ -159,6 +160,7 @@ config:
condition: .Values.metrics.enabled
- name: txpool.nolocals
value: "true"
- name: auctioneer


conductor:
Expand Down
6 changes: 3 additions & 3 deletions charts/evm-stack/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies:
version: 0.4.0
- name: evm-rollup
repository: file://../evm-rollup
version: 1.0.0
version: 1.0.1
- name: composer
repository: file://../composer
version: 1.0.0
Expand All @@ -20,5 +20,5 @@ dependencies:
- name: blockscout-stack
repository: https://blockscout.github.io/helm-charts
version: 1.6.8
digest: sha256:618d0978ce1fa169bffa360010e8afeb06f21ffb7574e8a298d1d561bbcee05b
generated: "2024-11-11T13:27:42.868678+02:00"
digest: sha256:b24083a75d7242a95b7b98176e67e429c30fb33192769252f40555077034e244
generated: "2024-11-21T16:21:00.174496+05:30"
4 changes: 2 additions & 2 deletions charts/evm-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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: 1.0.3
version: 1.0.4

dependencies:
- name: celestia-node
version: 0.4.0
repository: "file://../celestia-node"
condition: celestia-node.enabled
- name: evm-rollup
version: 1.0.0
version: 1.0.1
repository: "file://../evm-rollup"
- name: composer
version: 1.0.0
Expand Down
3 changes: 3 additions & 0 deletions dev/values/rollup/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ evm-rollup:
# minBaseFee: 0
# elasticityMultiplier: 2
# baseFeeChangeDenominator: 8
auctioneerAddresses:
1: "astria1ferdmm38w7zr4ankmntst0g0qg8e7ygeu3vxcy"

## Standard Eth Genesis config values
# Configuration of Eth forks, setting to 0 will enable from height,
Expand Down Expand Up @@ -86,6 +88,7 @@ evm-rollup:
logLevel: "debug"

conductor:
# Determines what will drive block execution, options are:
# Determines what will drive block execution, options are:
# - "SoftOnly" -> blocks are only pulled from the sequencer
# - "FirmOnly" -> blocks are only pulled from DA
Expand Down
Loading