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 ports #227

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
chore(reth): remove wsAuthPort
  • Loading branch information
paolofacchinetti committed Sep 18, 2023
commit 29e9ba95038f62233b5e21c1f164e06c4c753c7c
3 changes: 1 addition & 2 deletions charts/reth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ Reth (short for Rust Ethereum, pronunciation) is a new Ethereum full node implem
| 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 |
| wsPort | int | `8546` | WS Port |

# Examples

Expand Down
6 changes: 0 additions & 6 deletions charts/reth/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ spec:
protocol: TCP
name: ws-rpc
{{- end }}
{{- if ne .Values.authPort .Values.wsAuthPort }}
- port: {{ .Values.wsAuthPort }}
targetPort: ws-auth-rpc
protocol: TCP
name: ws-auth-rpc
{{- end }}
{{- if .Values.extraPorts }}
{{ toYaml .Values.extraPorts | nindent 4}}
{{- end }}
Expand Down
3 changes: 0 additions & 3 deletions charts/reth/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,6 @@ spec:
- name: auth-rpc
containerPort: {{ .Values.authPort }}
protocol: TCP
- name: ws-auth-rpc
containerPort: {{ .Values.wsAuthPort }}
protocol: TCP
- name: metrics
containerPort: {{ .Values.metricsPort }}
protocol: TCP
Expand Down
3 changes: 0 additions & 3 deletions charts/reth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@ wsPort: 8546
# -- Engine Port (Auth Port)
authPort: 8551

# -- WS Engine Auth Port
wsAuthPort: 8551

# -- Metrics Port
metricsPort: 9001

Expand Down
Loading