diff --git a/helm/charts/besu-node/templates/node-service.yaml b/helm/charts/besu-node/templates/node-service.yaml index 0723eec6..20efa678 100644 --- a/helm/charts/besu-node/templates/node-service.yaml +++ b/helm/charts/besu-node/templates/node-service.yaml @@ -35,7 +35,7 @@ spec: targetPort: rlpx protocol: TCP - name: discovery - port: {{ .Values.node.besu.p2p.port }} + port: {{ .Values.node.besu.p2p.discoveryPort }} targetPort: discovery protocol: UDP - name: metrics diff --git a/helm/charts/besu-node/templates/node-statefulset.yaml b/helm/charts/besu-node/templates/node-statefulset.yaml index d4e93ea7..a971e8f5 100644 --- a/helm/charts/besu-node/templates/node-statefulset.yaml +++ b/helm/charts/besu-node/templates/node-statefulset.yaml @@ -257,7 +257,7 @@ spec: containerPort: {{ .Values.node.besu.p2p.port }} protocol: TCP - name: discovery - containerPort: {{ .Values.node.besu.p2p.port }} + containerPort: {{ .Values.node.besu.p2p.discoveryPort }} protocol: UDP - name: metrics containerPort: {{ .Values.node.besu.metrics.port }} diff --git a/helm/charts/besu-node/values.yaml b/helm/charts/besu-node/values.yaml index b3f72850..7f2720f3 100644 --- a/helm/charts/besu-node/values.yaml +++ b/helm/charts/besu-node/values.yaml @@ -63,6 +63,7 @@ node: host: "0.0.0.0" port: 30303 discovery: true + discoveryPort: 30303 staticNodes: "/config/static/static-nodes.json" maxPeers: 25 rpc: