Skip to content

Commit

Permalink
try to fix p2p networking via nodeport
Browse files Browse the repository at this point in the history
  • Loading branch information
matilote committed Aug 10, 2023
1 parent 07c6f17 commit 131acaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions charts/execution-beacon/templates/service-p2p.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ spec:
- name: p2p-tcp-exec
port: {{ include "execution.p2pPort" $ }}
protocol: TCP
targetPort: {{ include "execution.p2pPort" $ }}
targetPort: {{ $portExecution }}
nodePort: {{ $portExecution }}
{{- if eq $.Values.global.p2pNodePort.type "NodePort" }}
- name: p2p-udp-exec
port: {{ include "execution.p2pPort" $ }}
protocol: UDP
targetPort: {{ include "execution.p2pPort" $ }}
targetPort: {{ $portExecution }}
nodePort: {{ $portExecution }}
{{- end }}
selector:
Expand Down Expand Up @@ -62,13 +62,13 @@ spec:
- name: p2p-tcp-beacon
port: {{ include "beacon.p2pPort" $ }}
protocol: TCP
targetPort: {{ include "beacon.p2pPort" $ }}
targetPort: {{ $portBeacon }}
nodePort: {{ $portBeacon }}
{{- if eq $.Values.global.p2pNodePort.type "NodePort" }}
- name: p2p-udp-beacon
port: {{ include "beacon.p2pPort" $ }}
protocol: UDP
targetPort: {{ include "beacon.p2pPort" $ }}
targetPort: {{ $portBeacon }}
nodePort: {{ $portBeacon }}
{{- end }}
selector:
Expand Down
4 changes: 2 additions & 2 deletions charts/mev-boost/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1
version: 0.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v1.5.0"
appVersion: "1.6.0"

dependencies:
- name: common
Expand Down

0 comments on commit 131acaa

Please sign in to comment.