Skip to content

Commit

Permalink
fix: reth expose metrics on 0.0.0.0 (#259)
Browse files Browse the repository at this point in the history
* fix: reth expose metrics on 0.0.0.0

* bump ethereum-node chart too
  • Loading branch information
barnabasbusa authored Nov 29, 2023
1 parent 756a746 commit d5d5347
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions charts/ethereum-node/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
version: 1.0.9
- name: reth
repository: file://../reth
version: 0.0.10
version: 0.0.11
- name: grandine
repository: file://../grandine
version: 0.1.1
Expand All @@ -41,5 +41,5 @@ dependencies:
- name: xatu-sentry
repository: file://../xatu-sentry
version: 0.0.8
digest: sha256:4b6b12c92e7b599a55c7a2597c5e0f8a28568b4f5c88f0ff1f33e98a339a6561
generated: "2023-11-24T16:37:16.587713617+01:00"
digest: sha256:37d120c4f388e17d8949db86ebffef2cfbf637f28aa1ac8173114a5818a74ce6
generated: "2023-11-29T09:00:01.30803+01:00"
4 changes: 2 additions & 2 deletions charts/ethereum-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ icon: https://avatars.githubusercontent.com/u/6250754?s=200&v=4
sources:
- https://github.com/ethpandaops/ethereum-helm-charts
type: application
version: 0.0.17
version: 0.0.18
maintainers:
- name: skylenet
email: rafael@skyle.net
Expand Down Expand Up @@ -40,7 +40,7 @@ dependencies:
repository: "file://../nethermind"
condition: nethermind.enabled
- name: reth
version: "0.0.10"
version: "0.0.11"
#repository: "https://ethpandaops.github.io/ethereum-helm-charts"
repository: "file://../reth"
condition: reth.enabled
Expand Down
4 changes: 2 additions & 2 deletions charts/ethereum-node/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# ethereum-node

![Version: 0.0.17](https://img.shields.io/badge/Version-0.0.17-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.18](https://img.shields.io/badge/Version-0.0.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

This chart acts as an umbrella chart and allows to run a ethereum execution and consensus layer client. It's also able to deploy optional monitoring applications.

Expand All @@ -25,7 +25,7 @@ This chart acts as an umbrella chart and allows to run a ethereum execution and
| file://../nethermind | nethermind | 1.0.9 |
| file://../nimbus | nimbus | 1.1.1 |
| file://../prysm | prysm | 1.1.1 |
| file://../reth | reth | 0.0.10 |
| file://../reth | reth | 0.0.11 |
| file://../teku | teku | 1.1.1 |
| file://../xatu-sentry | xatu-sentry | 0.0.8 |

Expand Down
2 changes: 1 addition & 1 deletion charts/reth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icon: https://github.com/paradigmxyz/reth/raw/main/assets/reth.jpg
sources:
- https://github.com/paradigmxyz/reth/
type: application
version: 0.0.10
version: 0.0.11
maintainers:
- name: barnabasbusa
email: busa.barnabas@gmail.com
2 changes: 1 addition & 1 deletion charts/reth/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# reth

![Version: 0.0.10](https://img.shields.io/badge/Version-0.0.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.11](https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Reth (short for Rust Ethereum, pronunciation) is a new Ethereum full node implementation that is focused on being user-friendly, highly modular, as well as being fast and efficient. Reth is an Execution Layer (EL) and is compatible with all Ethereum Consensus Layer (CL) implementations that support the Engine API. It is originally built and driven forward by Paradigm, and is licensed under the Apache and MIT licenses.

Expand Down
2 changes: 1 addition & 1 deletion charts/reth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ defaultCommandTemplate: |
--authrpc.port={{ .Values.authPort }}
--log.file.directory=/data/logs
{{- if .Values.metricsPort }}
--metrics={{ .Values.metricsPort }}
--metrics=0.0.0.0:{{ .Values.metricsPort }}
{{- end }}
{{- range .Values.extraArgs }}
{{ tpl . $ }}
Expand Down

0 comments on commit d5d5347

Please sign in to comment.