Skip to content

Commit

Permalink
chore(charts): bump celestia versions (#1431)
Browse files Browse the repository at this point in the history
## Summary
`celestia-app` and `celestia-node` version bump to support lateset
`mocha-4` upgrade
## Background
celestia mocha-4 testnet went through an upgrade, devnets rollups are
not getting firm blocks duo to it.
## Changes
- changes flag `keyring.accname` -> `keyring.keyname`
- adds fee field for genTx
- bumps celestia images

## Testing
- locally vs latest components, confirmed getting firms
- will run on devdev before merging
  • Loading branch information
quasystaty1 committed Sep 3, 2024
1 parent e594015 commit 4a389a2
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/celestia-local/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.6.1
version: 0.6.2

# 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
1 change: 1 addition & 0 deletions charts/celestia-local/files/scripts/init-celestia-appd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ celestia-appd gentx \
"$validator_stake" \
--keyring-backend="$keyring_backend" \
--chain-id "$chainid" \
--fees "$fees" \
--home "$home_dir"

# add ibc account
Expand Down
2 changes: 1 addition & 1 deletion charts/celestia-local/files/scripts/start-bridge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ exec celestia bridge start \
--gateway.port "$bridge_host_port" \
--rpc.addr 0.0.0.0 \
--rpc.port "$bridge_rpc_port" \
--keyring.accname "$validator_key_name" \
--keyring.keyname "$validator_key_name" \
--log.level "debug" \
--log.level.module "share/discovery:error"
1 change: 1 addition & 0 deletions charts/celestia-local/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
data:
home_dir: "/home/celestia"
coins: "{{ .Values.coins }}"
fees: "{{ .Values.fees }}"
validator_stake: "{{ .Values.validatorStake }}"
validator_mnemonic: "{{ .Values.validatorMnemonic }}"
chainid: "{{ .Values.chainId }}"
Expand Down
6 changes: 4 additions & 2 deletions charts/celestia-local/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ storage:
persistentVolumeName: "celestia-shared-storage"
path: "/data/celestia-data"

celestiaAppImage: "ghcr.io/celestiaorg/celestia-app:v1.9.0"
celestiaNodeImage: "ghcr.io/celestiaorg/celestia-node:v0.14.1"
celestiaAppImage: "ghcr.io/celestiaorg/celestia-app:v2.0.0"
celestiaNodeImage: "ghcr.io/celestiaorg/celestia-node:v0.16.0-rc0"

podSecurityContext:
runAsUser: 10001
Expand All @@ -35,6 +35,8 @@ validatorKeyName: "validator"
validatorMnemonic: connect soon random stable toddler tired glove drastic comfort donor struggle island cactus pole shell alpha taste able story business cross dismiss book brass
# Genesis amount
coins: "10000000000000000000000000utia"
# Default fee for genTx
fees: "1utia"
# Staking amount
validatorStake: "5000000000utia"
# ibc account
Expand Down
2 changes: 1 addition & 1 deletion charts/celestia-node/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.3.5
version: 0.3.6

# 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
2 changes: 1 addition & 1 deletion charts/celestia-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ config:

images:
pullPolicy: IfNotPresent
node: ghcr.io/celestiaorg/celestia-node:v0.14.1
node: ghcr.io/celestiaorg/celestia-node:v0.16.0-rc0

ports:
celestia:
Expand Down
6 changes: 3 additions & 3 deletions charts/evm-stack/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies:
- name: celestia-node
repository: file://../celestia-node
version: 0.3.5
version: 0.3.6
- name: evm-rollup
repository: file://../evm-rollup
version: 0.26.1
Expand All @@ -20,5 +20,5 @@ dependencies:
- name: blockscout-stack
repository: https://blockscout.github.io/helm-charts
version: 1.6.2
digest: sha256:6406abf0864a14a8268dc0c78512ca5d18779e9f20dac8ad540399ddcfbe062c
generated: "2024-08-28T09:44:42.794673-04:00"
digest: sha256:b964035934951500ea972b9f38aaeaac37180523acee810ad1b17ae8641d81f4
generated: "2024-08-29T20:24:02.892112-04:00"
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.4.1
version: 0.4.2

dependencies:
- name: celestia-node
version: "0.3.5"
version: 0.3.6
repository: "file://../celestia-node"
condition: celestia-node.enabled
- name: evm-rollup
Expand Down

0 comments on commit 4a389a2

Please sign in to comment.