From dd93e433c4844cd5a7b1bae7b375b9587d85137f Mon Sep 17 00:00:00 2001 From: Jordan Oroshiba Date: Tue, 24 Oct 2023 15:31:44 -0700 Subject: [PATCH] Upgrade composer, with more logs (#121) --- charts/rollup/Chart.yaml | 2 +- charts/rollup/files/scripts/start-geth.sh | 2 +- charts/rollup/values.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/rollup/Chart.yaml b/charts/rollup/Chart.yaml index 0bf0097f..863728dd 100644 --- a/charts/rollup/Chart.yaml +++ b/charts/rollup/Chart.yaml @@ -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.4.3 +version: 0.4.4 # 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 diff --git a/charts/rollup/files/scripts/start-geth.sh b/charts/rollup/files/scripts/start-geth.sh index 3905eec9..90e94ddf 100755 --- a/charts/rollup/files/scripts/start-geth.sh +++ b/charts/rollup/files/scripts/start-geth.sh @@ -3,6 +3,6 @@ set -o errexit -o nounset geth --datadir $data_dir/ --networkid=$evm_network_id \ - --http --http.addr "0.0.0.0" --http.port $executor_host_http_port --http.corsdomain='*' --http.vhosts "*" --http.api eth,net,web3,debug \ + --http --http.addr "0.0.0.0" --http.port $executor_host_http_port --http.corsdomain='*' --http.vhosts "*" --http.api eth,net,web3,debug,txpool \ --ws --ws.addr "0.0.0.0" --ws.port $executor_host_ws_port --ws.origins='*' \ --grpc --grpc.addr "0.0.0.0" --grpc.port $executor_host_grpc_port diff --git a/charts/rollup/values.yaml b/charts/rollup/values.yaml index b519e87d..1ff85354 100644 --- a/charts/rollup/values.yaml +++ b/charts/rollup/values.yaml @@ -8,7 +8,7 @@ config: # The level at which core astria components will log out # Options are: error, warn, info, and debug - logLevel: "info" + logLevel: "debug" rollup: # Default name for the rollup chain @@ -61,7 +61,7 @@ images: # Core images for the rollup, developed for Astria geth: "ghcr.io/astriaorg/go-ethereum:0.3.0" conductor: "ghcr.io/astriaorg/conductor:0.7.0--conductor" - composer: "ghcr.io/astriaorg/composer:0.2.3--composer" + composer: "ghcr.io/astriaorg/composer:0.2.4--composer" # Rollup faucet faucet: "ghcr.io/astriaorg/ria-faucet:0.0.1"