Skip to content

Commit

Permalink
feat(deps): update erigon dependencies (#237)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Ana-Maria Calin <[email protected]>
  • Loading branch information
3 people authored Feb 26, 2024
1 parent 13f56a4 commit 919a8e6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/erigon/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.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"
3 changes: 2 additions & 1 deletion charts/erigon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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` |
Expand Down
3 changes: 3 additions & 0 deletions charts/erigon/templates/stateful-node/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions charts/erigon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 919a8e6

Please sign in to comment.