Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(reth): log.file.directory flag #256

Merged
merged 3 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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.9
version: 0.0.10
- name: grandine
repository: file://../grandine
version: 0.1.1
Expand All @@ -40,6 +40,6 @@ dependencies:
version: 0.1.4
- name: xatu-sentry
repository: file://../xatu-sentry
version: 0.0.7
digest: sha256:0426637d7b196b7b9b09fcc3d7cf260dcaa1e63c6ea6e1002ff6c498d44370c9
generated: "2023-09-29T16:34:32.642441+02:00"
version: 0.0.8
digest: sha256:4b6b12c92e7b599a55c7a2597c5e0f8a28568b4f5c88f0ff1f33e98a339a6561
generated: "2023-11-24T16:37:16.587713617+01:00"
6 changes: 3 additions & 3 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.16
version: 0.0.17
maintainers:
- name: skylenet
email: [email protected]
Expand Down Expand Up @@ -40,7 +40,7 @@ dependencies:
repository: "file://../nethermind"
condition: nethermind.enabled
- name: reth
version: "0.0.9"
version: "0.0.10"
#repository: "https://ethpandaops.github.io/ethereum-helm-charts"
repository: "file://../reth"
condition: reth.enabled
Expand Down Expand Up @@ -82,7 +82,7 @@ dependencies:
repository: "file://../ethereum-metrics-exporter"
condition: ethereum-metrics-exporter.enabled
- name: xatu-sentry
version: "0.0.7"
version: "0.0.8"
#repository: "https://ethpandaops.github.io/ethereum-helm-charts"
repository: "file://../xatu-sentry"
condition: xatu-sentry.enabled
6 changes: 3 additions & 3 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.16](https://img.shields.io/badge/Version-0.0.16-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![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)

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,9 +25,9 @@ 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.9 |
| file://../reth | reth | 0.0.10 |
| file://../teku | teku | 1.1.1 |
| file://../xatu-sentry | xatu-sentry | 0.0.7 |
| file://../xatu-sentry | xatu-sentry | 0.0.8 |

# Details

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.9
version: 0.0.10
maintainers:
- name: barnabasbusa
email: [email protected]
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.9](https://img.shields.io/badge/Version-0.0.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![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)

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 @@ -61,7 +61,7 @@ defaultCommandTemplate: |
--authrpc.jwtsecret=/data/jwt.hex
--authrpc.addr=0.0.0.0
--authrpc.port={{ .Values.authPort }}
--log.directory=/data/logs
--log.file.directory=/data/logs
{{- if .Values.metricsPort }}
--metrics={{ .Values.metricsPort }}
{{- end }}
Expand Down
Loading