Skip to content

Commit

Permalink
fix: nethermind ws port spacing (#268)
Browse files Browse the repository at this point in the history
* fix: nethermind ws port spacing

* fix lint
  • Loading branch information
barnabasbusa authored Dec 20, 2023
1 parent 00b92b6 commit 16088cc
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions charts/ethereum-node/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
version: 1.0.7
- name: nethermind
repository: file://../nethermind
version: 1.0.9
version: 1.0.10
- name: reth
repository: file://../reth
version: 0.0.11
Expand Down Expand Up @@ -41,5 +41,5 @@ dependencies:
- name: xatu-sentry
repository: file://../xatu-sentry
version: 0.0.8
digest: sha256:a8aec1686498a40fe5fc58a2baf2dc90aeaf53138c0beb58db8122b72f175eae
generated: "2023-12-19T11:21:29.129286+01:00"
digest: sha256:753396a57ff6bbccbb891586fee59cb43122c3832c9d5285f9cee25ee154b9bf
generated: "2023-12-20T12:03:37.628397+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.20
version: 0.0.21
maintainers:
- name: skylenet
email: rafael@skyle.net
Expand All @@ -35,7 +35,7 @@ dependencies:
repository: "file://../geth"
condition: geth.enabled
- name: nethermind
version: "1.0.9"
version: "1.0.10"
#repository: "https://ethpandaops.github.io/ethereum-helm-charts"
repository: "file://../nethermind"
condition: nethermind.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.20](https://img.shields.io/badge/Version-0.0.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.21](https://img.shields.io/badge/Version-0.0.21-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 @@ -22,7 +22,7 @@ This chart acts as an umbrella chart and allows to run a ethereum execution and
| file://../grandine | grandine | 0.1.1 |
| file://../lighthouse | lighthouse | 1.1.1 |
| file://../lodestar | lodestar | 1.1.1 |
| file://../nethermind | nethermind | 1.0.9 |
| file://../nethermind | nethermind | 1.0.10 |
| file://../nimbus | nimbus | 1.1.1 |
| file://../prysm | prysm | 1.1.1 |
| file://../reth | reth | 0.0.11 |
Expand Down
2 changes: 1 addition & 1 deletion charts/nethermind/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icon: https://launchpad.ethereum.org/static/media/nethermind-circle.fbbf1a32.png
sources:
- https://github.com/NethermindEth/nethermind
type: application
version: 1.0.9
version: 1.0.10
maintainers:
- name: skylenet
email: rafael@skyle.net
Expand Down
2 changes: 1 addition & 1 deletion charts/nethermind/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# nethermind

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

Nethermind is an Ethereum execution layer implementation created with the C# .NET tech stack, running on all major platforms including ARM.

Expand Down
10 changes: 5 additions & 5 deletions charts/nethermind/templates/service-headless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ spec:
protocol: TCP
name: http-rpc
{{- if ne .Values.httpPort .Values.wsPort }}
- port: {{ .Values.wsPort }}
targetPort: ws-rpc
protocol: TCP
name: ws-rpc
{{- end }}
- port: {{ .Values.wsPort }}
targetPort: ws-rpc
protocol: TCP
name: ws-rpc
{{- end }}
- port: {{ .Values.authPort }}
targetPort: auth-rpc
protocol: TCP
Expand Down
8 changes: 4 additions & 4 deletions charts/nethermind/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ spec:
protocol: TCP
name: http-rpc
{{- if ne .Values.httpPort .Values.wsPort }}
- port: {{ .Values.wsPort }}
targetPort: ws-rpc
protocol: TCP
name: ws-rpc
- port: {{ .Values.wsPort }}
targetPort: ws-rpc
protocol: TCP
name: ws-rpc
{{- end }}
- port: {{ .Values.authPort }}
targetPort: auth-rpc
Expand Down

0 comments on commit 16088cc

Please sign in to comment.