Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Update images for conductor, composer #114

Merged
merged 8 commits into from
Oct 13, 2023
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/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: 0.3.3
version: 0.4.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.3.0"
appVersion: "0.4.0"

maintainers:
- name: wafflesvonmaple
Expand Down
2 changes: 1 addition & 1 deletion charts/rollup/files/scripts/start-conductor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -o errexit -o nounset -o pipefail

# Request Celestia token if connecting to celestia
BEARER_TOKEN=""
if [ "$ASTRIA_CONDUCTOR_DISABLE_FINALIZATION" = "false" ]; then
if [ "$ASTRIA_CONDUCTOR_EXECUTION_COMMIT_LEVEL" != "SoftOnly" ]; then
BEARER_TOKEN=$(wget -qO- http://celestia-service:5353)

if [ -z "$BEARER_TOKEN" ]; then
Expand Down
2 changes: 1 addition & 1 deletion charts/rollup/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:
ASTRIA_CONDUCTOR_CELESTIA_NODE_URL: "{{ .Values.config.celestia.fullNodeUrl }}"
ASTRIA_CONDUCTOR_CHAIN_ID: "{{ .Values.config.rollup.chainId }}"
ASTRIA_CONDUCTOR_EXECUTION_RPC_URL: "http://127.0.0.1:{{ .Values.ports.executionGRPC }}"
ASTRIA_CONDUCTOR_DISABLE_FINALIZATION: "{{ .Values.config.rollup.disableFinalization }}"
ASTRIA_CONDUCTOR_EXECUTION_COMMIT_LEVEL: "{{ .Values.config.rollup.executionCommitLevel }}"
ASTRIA_CONDUCTOR_SEQUENCER_URL: "{{ .Values.config.sequencer.websocket }}"
ASTRIA_CONDUCTOR_DISABLE_EMPTY_BLOCK_EXECUTION: "{{ .Values.config.rollup.skipEmptyBlocks }}"
ASTRIA_CONDUCTOR_INITIAL_SEQUENCER_BLOCK_HEIGHT: "{{ .Values.config.sequencer.initialBlockHeight }}"
Expand Down
11 changes: 7 additions & 4 deletions charts/rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ config:
networkId: 912559
# Set to true to have rollup blocks only be generated when there are transactions
skipEmptyBlocks: false
# Set to true to rely on sequencer fully without Celestia DA finalization
disableFinalization: false
# Determines what will drive block execution, options are:
# - "SoftOnly" -> blocks are only pulled from the sequencer
# - "FirmOnly" -> blocks are only pulled from DA
# - "SoftAndFirm" -> blocks are pulled from both the sequencer and DA
executionCommitLevel: 'SoftOnly'
# Definitions around who has funding on startup
genesisAccounts:
- address: "0xaC21B97d35Bf75A7dAb16f35b111a50e78A72F30"
Expand Down Expand Up @@ -56,8 +59,8 @@ config:
images:
# Core images for the rollup, developed for Astria
geth: "ghcr.io/astriaorg/go-ethereum:0.3.0"
conductor: "ghcr.io/astriaorg/conductor:0.6.0--conductor"
composer: "ghcr.io/astriaorg/composer:0.2.1--composer"
conductor: "ghcr.io/astriaorg/conductor:0.7.0--conductor"
composer: "ghcr.io/astriaorg/composer:0.2.2--composer"

# Rollup faucet
faucet: "ghcr.io/astriaorg/ria-faucet:0.0.1"
Expand Down