Skip to content

Commit 780cd7e

Browse files
committed
1 parent 75cb256 commit 780cd7e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1267
-276
lines changed

charts/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog
2+
3+
## [0.1.0] - 2024-04-17
4+
5+
### Features
6+
7+
* Initial release of Astria Helm charts
8+
* Added global values.yaml for centralized version management
9+
* Added version management with Release Please integration
10+
11+
### Components
12+
13+
* sequencer
14+
* sequencer-relayer
15+
* composer
16+
* evm-bridge-withdrawer
17+
* auctioneer
18+
* celestia-node
19+
* external-ingress
20+
* evm-stack
21+
* hermes
22+
* astrotrek
23+
* graph-node
24+
* hyperlane-agents
25+
* sequencer-faucet
26+
* evm-faucet
27+
* flame-rollup

charts/celestia-local/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.7.1
18+
version: 0.7.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/composer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.1
18+
version: 1.0.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/composer/templates/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ data:
2020
ASTRIA_COMPOSER_NO_METRICS: "{{ not .Values.metrics.enabled }}"
2121
ASTRIA_COMPOSER_METRICS_HTTP_LISTENER_ADDR: "0.0.0.0:{{ .Values.ports.metrics }}"
2222
ASTRIA_COMPOSER_FORCE_STDOUT: "{{ .Values.global.useTTY }}"
23-
ASTRIA_COMPOSER_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
2423
NO_COLOR: "{{ .Values.global.useTTY }}"
2524
ASTRIA_COMPOSER_NO_OTEL: "{{ not .Values.otel.enabled }}"
2625
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.otel.endpoint . }}"
@@ -31,6 +30,7 @@ data:
3130
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ tpl .Values.otel.traceHeaders . }}"
3231
OTEL_SERVICE_NAME: "{{ tpl .Values.otel.serviceName . }}"
3332
{{- if not .Values.global.dev }}
33+
ASTRIA_COMPOSER_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
3434
{{- else }}
3535
{{- end }}
3636
---

charts/evm-bridge-withdrawer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.3
18+
version: 1.0.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/evm-bridge-withdrawer/templates/configmaps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ data:
2121
ASTRIA_BRIDGE_WITHDRAWER_NO_METRICS: "{{ not .Values.metrics.enabled }}"
2222
ASTRIA_BRIDGE_WITHDRAWER_METRICS_HTTP_LISTENER_ADDR: "0.0.0.0:{{ .Values.ports.metrics }}"
2323
ASTRIA_BRIDGE_WITHDRAWER_FORCE_STDOUT: "{{ .Values.global.useTTY }}"
24-
ASTRIA_BRIDGE_WITHDRAWER_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
2524
ASTRIA_BRIDGE_WITHDRAWER_NO_OTEL: "{{ not .Values.otel.enabled }}"
2625

2726
NO_COLOR: "{{ .Values.global.useTTY }}"
@@ -33,6 +32,7 @@ data:
3332
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ tpl .Values.otel.traceHeaders . }}"
3433
OTEL_SERVICE_NAME: "{{ tpl .Values.otel.serviceName . }}"
3534
{{- if not .Values.global.dev }}
35+
ASTRIA_BRIDGE_WITHDRAWER_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
3636
{{- else }}
3737
ASTRIA_BRIDGE_WITHDRAWER_NO_FROST_THRESHOLD_SIGNING: "{{ .Values.config.noFrostThresholdSigning }}"
3838
ASTRIA_BRIDGE_WITHDRAWER_FROST_MIN_SIGNERS: "{{ .Values.config.frostMinSigners }}"

charts/evm-rollup/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.2.2
18+
version: 1.2.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/evm-rollup/files/genesis/geth-genesis.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
"astriaEIP1559Params": {{ toPrettyJson .Values.genesis.eip1559Params | indent 8 | trim }},
4141
"astriaSequencerAddressPrefix": "{{ .Values.genesis.sequencerAddressPrefix }}"
4242
{{- if not .Values.global.dev }}
43-
{{- else }}
43+
{{- else }},
44+
"astriaOracleCallerAddress": "{{ .Values.genesis.astriaOracleCallerAddress }}",
45+
"astriaOracleContractAddress": "{{ .Values.genesis.astriaOracleContractAddress }}"
4446
{{- end }}
4547
},
4648
"difficulty": "0",

charts/evm-rollup/templates/configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ data:
1919
ASTRIA_CONDUCTOR_METRICS_HTTP_LISTENER_ADDR: "0.0.0.0:{{ .Values.ports.conductorMetrics }}"
2020
ASTRIA_CONDUCTOR_SEQUENCER_REQUESTS_PER_SECOND: "{{ .Values.config.conductor.sequencerRequestsPerSecond }}"
2121
ASTRIA_CONDUCTOR_FORCE_STDOUT: "{{ .Values.global.useTTY }}"
22-
ASTRIA_CONDUCTOR_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
2322
NO_COLOR: "{{ .Values.global.useTTY }}"
2423
ASTRIA_CONDUCTOR_NO_OTEL: "{{ not .Values.otel.enabled }}"
2524
ASTRIA_CONDUCTOR_NO_CELESTIA_AUTH: "{{ not .Values.config.celestia.token }}"
@@ -31,6 +30,7 @@ data:
3130
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ tpl .Values.otel.traceHeaders .}}"
3231
OTEL_SERVICE_NAME: "{{ tpl .Values.otel.serviceNamePrefix . }}-conductor"
3332
{{- if not .Values.global.dev }}
33+
ASTRIA_CONDUCTOR_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
3434
{{- else }}
3535
{{- end }}
3636
---
@@ -85,4 +85,4 @@ data:
8585
{{- end }}
8686
---
8787
{{- end }}
88-
{{- end }}
88+
{{- end }}

charts/evm-rollup/values.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ genesis:
6060
# senderAddress: "0x0000000000000000000000000000000000000000"
6161
# assetPrecision: 9
6262

63+
## Native oracle configuration
64+
65+
# address from which injected oracle transactions are called from;
66+
# must not have a known private key for mainnet
67+
astriaOracleCallerAddress: "0x0000000000000000000000000000000000000088"
68+
# address where the oracle contract is deployed at (at genesis)
69+
# must match the `alloc` genesis field
70+
astriaOracleContractAddress: "0x0000000000000000000000000000000000000089"
6371

6472
## Fee configuration
6573

@@ -184,7 +192,6 @@ config:
184192
- name: txpool.nolocals
185193
value: "true"
186194

187-
188195
conductor:
189196
# Determines what will drive block execution, options are:
190197
# - "SoftOnly" -> blocks are only pulled from the sequencer

0 commit comments

Comments
 (0)