Skip to content

Commit

Permalink
fix: ethjs port conflict issue (#257)
Browse files Browse the repository at this point in the history
* fix: ethjs port conflict issue

Signed-off-by: Barnabas Busa <busa.barnabas@gmail.com>
  • Loading branch information
barnabasbusa authored Nov 29, 2023
1 parent d5d5347 commit c1082f4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions charts/ethereum-node/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
version: 1.0.8
- name: ethereumjs
repository: file://../ethereumjs
version: 0.0.6
version: 0.0.7
- name: geth
repository: file://../geth
version: 1.0.7
Expand Down Expand Up @@ -41,5 +41,5 @@ dependencies:
- name: xatu-sentry
repository: file://../xatu-sentry
version: 0.0.8
digest: sha256:37d120c4f388e17d8949db86ebffef2cfbf637f28aa1ac8173114a5818a74ce6
generated: "2023-11-29T09:00:01.30803+01:00"
digest: sha256:cfd33f31cbea354dfd71a57df5898db90188d5a8729828eacf94963d71832912
generated: "2023-11-29T09:22:39.344937+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.18
version: 0.0.19
maintainers:
- name: skylenet
email: rafael@skyle.net
Expand All @@ -25,7 +25,7 @@ dependencies:
repository: "file://../erigon"
condition: erigon.enabled
- name: ethereumjs
version: "0.0.6"
version: "0.0.7"
#repository: "https://ethpandaops.github.io/ethereum-helm-charts"
repository: "file://../ethereumjs"
condition: ethereumjs.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.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)
![Version: 0.0.19](https://img.shields.io/badge/Version-0.0.19-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 @@ -17,7 +17,7 @@ This chart acts as an umbrella chart and allows to run a ethereum execution and
| file://../besu | besu | 1.0.6 |
| file://../erigon | erigon | 1.0.8 |
| file://../ethereum-metrics-exporter | ethereum-metrics-exporter | 0.1.4 |
| file://../ethereumjs | ethereumjs | 0.0.6 |
| file://../ethereumjs | ethereumjs | 0.0.7 |
| file://../geth | geth | 1.0.7 |
| file://../grandine | grandine | 0.1.1 |
| file://../lighthouse | lighthouse | 1.1.1 |
Expand Down
2 changes: 1 addition & 1 deletion charts/ethereumjs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icon: https://user-images.githubusercontent.com/47108/78779352-d0839500-796a-11e
sources:
- https://github.com/ethereumjs/ethereumjs-monorepo
type: application
version: 0.0.6
version: 0.0.7
maintainers:
- name: barnabasbusa
email: busa.barnabas@gmail.com
6 changes: 3 additions & 3 deletions charts/ethereumjs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# ethereumjs

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

The EthereumJS Client is an Ethereum Execution Client (similar to go-ethereum or Nethermind) written in TypeScript/JavaScript, the non-Smart-Contract language Ethereum dApp developers are most familiar with. It is targeted to be a client for research and development and not meant to be used in production on mainnet for the foreseeable future (out of resource and security considerations).

Expand Down Expand Up @@ -97,8 +97,8 @@ The EthereumJS Client is an Ethereum Execution Client (similar to go-ethereum or
| topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods |
| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset |
| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type |
| wsAuthPort | int | `8551` | WS Engine Auth Port |
| wsPort | int | `8545` | WS Port |
| wsAuthPort | int | `8552` | WS Engine Auth Port |
| wsPort | int | `8546` | WS Port |

# Examples

Expand Down
4 changes: 2 additions & 2 deletions charts/ethereumjs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ p2pPort: 30303
rpcPort: 8545

# -- WS Port
wsPort: 8545
wsPort: 8546

# -- Engine Port (Auth Port)
authPort: 8551

# -- WS Engine Auth Port
wsAuthPort: 8551
wsAuthPort: 8552

# -- Node selector for pods
nodeSelector: {}
Expand Down

0 comments on commit c1082f4

Please sign in to comment.