From 919a8e656714a9e9453581bbf427dacb70c64e97 Mon Sep 17 00:00:00 2001 From: "graphops-renovate[bot]" <135047802+graphops-renovate[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:08:32 -0800 Subject: [PATCH] feat(deps): update erigon dependencies (#237) * feat(deps): update erigon dependencies | datasource | package | from | to | | ---------- | ------------- | ------- | ------- | | docker | thorax/erigon | v2.57.3 | v2.58.1 | * feat(erigon): add ws-rpc port * feat(erigon): updated chart v --------- Co-authored-by: Renovate Bot <135047802+graphops-renovate[bot]@users.noreply.github.com> Co-authored-by: Carlos Jorge Co-authored-by: Ana-Maria Calin --- charts/erigon/Chart.yaml | 4 ++-- charts/erigon/README.md | 3 ++- charts/erigon/templates/stateful-node/statefulset.yaml | 3 +++ charts/erigon/values.yaml | 2 ++ 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/charts/erigon/Chart.yaml b/charts/erigon/Chart.yaml index a6934bfc..068a3a3f 100644 --- a/charts/erigon/Chart.yaml +++ b/charts/erigon/Chart.yaml @@ -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.9.6 +version: 0.9.7 # 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=thorax/erigon -appVersion: "v2.57.3" +appVersion: "v2.58.1" diff --git a/charts/erigon/README.md b/charts/erigon/README.md index e6ee075d..814f7315 100644 --- a/charts/erigon/README.md +++ b/charts/erigon/README.md @@ -2,7 +2,7 @@ Deploy and scale [Erigon](https://github.com/ledgerwatch/erigon) 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.9.6](https://img.shields.io/badge/Version-0.9.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.57.3](https://img.shields.io/badge/AppVersion-v2.57.3-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.9.7](https://img.shields.io/badge/Version-0.9.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.58.1](https://img.shields.io/badge/AppVersion-v2.58.1-informational?style=flat-square) ## Features @@ -182,6 +182,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | statefulNode.service.ports.http-engineapi | Service Port to expose engineAPI interface on | int | `8551` | | statefulNode.service.ports.http-jsonrpc | Service Port to expose JSON-RPC interface on | int | `8545` | | statefulNode.service.ports.http-metrics | Service Port to expose Prometheus metrics on | int | `6060` | + | statefulNode.service.ports.ws-rpc | Service Port to expose WS-RPC interface on | int | `8546` | | statefulNode.service.topologyAwareRouting.enabled | | bool | `false` | | statefulNode.service.type | | string | `"ClusterIP"` | | statefulNode.terminationGracePeriodSeconds | Amount of time to wait before force-killing the Erigon process | int | `60` | diff --git a/charts/erigon/templates/stateful-node/statefulset.yaml b/charts/erigon/templates/stateful-node/statefulset.yaml index 7a298c8a..f162143b 100644 --- a/charts/erigon/templates/stateful-node/statefulset.yaml +++ b/charts/erigon/templates/stateful-node/statefulset.yaml @@ -194,6 +194,9 @@ spec: - name: http-jsonrpc containerPort: 8545 protocol: TCP + - name: ws-rpc + containerPort: 8546 + protocol: TCP - name: http-engineapi containerPort: 8551 protocol: TCP diff --git a/charts/erigon/values.yaml b/charts/erigon/values.yaml index f4250d16..0c7c55e4 100644 --- a/charts/erigon/values.yaml +++ b/charts/erigon/values.yaml @@ -127,6 +127,8 @@ statefulNode: grpc-erigon: 9090 # -- Service Port to expose JSON-RPC interface on http-jsonrpc: 8545 + # -- Service Port to expose WS-RPC interface on + ws-rpc: 8546 # -- Service Port to expose engineAPI interface on http-engineapi: 8551 # -- Service Port to expose Prometheus metrics on