Skip to content

Commit

Permalink
feat(deps): update arbitrum dependencies (#238)
Browse files Browse the repository at this point in the history
* feat(deps): update arbitrum dependencies

| datasource | package                 | from  | to             |
| ---------- | ----------------------- | ----- | -------------- |
| docker     | offchainlabs/nitro-node | 2.2.4 | v2.3.0-3e14543 |

* feat: add URL parameter for L1 beacon endpoint

---------

Co-authored-by: Renovate Bot <135047802+graphops-renovate[bot]@users.noreply.github.com>
Co-authored-by: Carlos Jorge <carlos@graphops.xyz>
  • Loading branch information
graphops-renovate[bot] and cjorge-graphops committed Feb 27, 2024
1 parent 7423ce8 commit 8fcfc77
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/arbitrum-nitro/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.2.4
version: 0.3.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.
# renovate: image=offchainlabs/nitro-node
appVersion: "v2.2.4-8517340"
appVersion: "v2.3.0-3e14543"
5 changes: 3 additions & 2 deletions charts/arbitrum-nitro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Deploy and scale [Arbitrum-Nitro](https://github.com/OffchainLabs/nitro/) inside Kubernetes with ease

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.2.4](https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.2.4-8517340](https://img.shields.io/badge/AppVersion-v2.2.4--8517340-informational?style=flat-square)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.3.0-3e14543](https://img.shields.io/badge/AppVersion-v2.3.0--3e14543-informational?style=flat-square)

## Features

Expand Down Expand Up @@ -94,7 +94,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
| nameOverride | | string | `""` |
| nitro.affinity | | object | `{}` |
| nitro.affinityPresets.antiAffinityByHostname | Configure anti-affinity rules to prevent multiple arbitrum instances on the same host | bool | `true` |
| nitro.config | Nitro configuration parameters | object | `{"chain":42161,"classicUrl":null,"defaultArgs":["--execution.caching.archive"],"extraArgs":[],"httpRpc":{"addr":"0.0.0.0","api":"net,web3,eth,debug","cors":"*","vhosts":"*"},"metrics":{"addr":"0.0.0.0","enabled":true},"parentChainUrl":"CHANGE_ME_RPC_URL"}` |
| nitro.config | Nitro configuration parameters | object | `{"chain":42161,"classicUrl":null,"defaultArgs":["--execution.caching.archive"],"extraArgs":[],"httpRpc":{"addr":"0.0.0.0","api":"net,web3,eth,debug","cors":"*","vhosts":"*"},"metrics":{"addr":"0.0.0.0","enabled":true},"parentChainBeaconUrl":"CHANGE_ME_BEACON_URL","parentChainUrl":"CHANGE_ME_RPC_URL"}` |
| nitro.config.chain | Chain ID, 42161 for Arbitrum One | int | `42161` |
| nitro.config.classicUrl | RPC Url to Arbitrum Classic Archive node if serving classic blocks | string | `nil` |
| nitro.config.defaultArgs | Enabled default arguments on the chart | list | `["--execution.caching.archive"]` |
Expand All @@ -107,6 +107,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
| nitro.config.metrics | Metrics parameters | object | `{"addr":"0.0.0.0","enabled":true}` |
| nitro.config.metrics.addr | Listen address | string | `"0.0.0.0"` |
| nitro.config.metrics.enabled | Enable metrics | bool | `true` |
| nitro.config.parentChainBeaconUrl | Beacon URL to L1 chain (ethereum) | string | `"CHANGE_ME_BEACON_URL"` |
| nitro.config.parentChainUrl | RPC URL to L1 chain (ethereum) | string | `"CHANGE_ME_RPC_URL"` |
| nitro.extraLabels | Extra labels to attach to the Pod for matching against | object | `{}` |
| nitro.nodeSelector | | object | `{}` |
Expand Down
1 change: 1 addition & 0 deletions charts/arbitrum-nitro/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Generate the array of options for nitro
}}
{{- with .config }}
{{- $args = concat $args (list (print "--parent-chain.connection.url=" .parentChainUrl)) }}
{{- $args = concat $args (list (print "--parent-chain.blob-client.beacon-url=" .parentChainBeaconUrl)) }}
{{- $args = concat $args (list (print "--chain.id=" .chain)) }}
{{- $args = concat $args (list (print "--http.api=" .httpRpc.api)) }}
{{- $args = concat $args (list (print "--http.addr=" .httpRpc.addr)) }}
Expand Down
2 changes: 2 additions & 0 deletions charts/arbitrum-nitro/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ nitro:
chain: 42161
# -- RPC URL to L1 chain (ethereum)
parentChainUrl: "CHANGE_ME_RPC_URL"
# -- Beacon URL to L1 chain (ethereum)
parentChainBeaconUrl: "CHANGE_ME_BEACON_URL"
# -- RPC Url to Arbitrum Classic Archive node if serving classic blocks
classicUrl: null
# -- RPC config parameters
Expand Down

0 comments on commit 8fcfc77

Please sign in to comment.