Skip to content

Commit b1b8280

Browse files
fix: fix values name for handshake_network
Signed-off-by: Overcooked Panda <overcookedpanda@blinklabs.io>
1 parent e27c002 commit b1b8280

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

charts/handshake-node/templates/tcp-service.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ spec:
1414
externalTrafficPolicy: Local
1515
ports:
1616
- name: p2p
17-
port: {{ index .Values.networkPorts .Values.network "p2p" }}
18-
targetPort: {{ index .Values.networkPorts .Values.network "p2p" }}
17+
port: {{ index .Values.networkPorts .Values.handshake_network "p2p" }}
18+
targetPort: {{ index .Values.networkPorts .Values.handshake_network "p2p" }}
1919
protocol: TCP
2020
- name: brontide
21-
port: {{ index .Values.networkPorts .Values.network "brontide" }}
22-
targetPort: {{ index .Values.networkPorts .Values.network "brontide" }}
21+
port: {{ index .Values.networkPorts .Values.handshake_network "brontide" }}
22+
targetPort: {{ index .Values.networkPorts .Values.handshake_network "brontide" }}
2323
protocol: TCP
2424
- name: http
25-
port: {{ index .Values.networkPorts .Values.network "http" }}
26-
targetPort: {{ index .Values.networkPorts .Values.network "http" }}
25+
port: {{ index .Values.networkPorts .Values.handshake_network "http" }}
26+
targetPort: {{ index .Values.networkPorts .Values.handshake_network "http" }}
2727
protocol: TCP
2828
selector:
2929
app.kubernetes.io/name: {{ include "handshake-node.name" . }}

charts/handshake-node/templates/udp-service.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ spec:
1414
externalTrafficPolicy: Local
1515
ports:
1616
- name: ns
17-
port: {{ index .Values.networkPorts .Values.network "ns" }}
18-
targetPort: {{ index .Values.networkPorts .Values.network "ns" }}
17+
port: {{ index .Values.networkPorts .Values.handshake_network "ns" }}
18+
targetPort: {{ index .Values.networkPorts .Values.handshake_network "ns" }}
1919
protocol: UDP
2020
- name: rs
21-
port: {{ index .Values.networkPorts .Values.network "rs" }}
22-
targetPort: {{ index .Values.networkPorts .Values.network "rs" }}
21+
port: {{ index .Values.networkPorts .Values.handshake_network "rs" }}
22+
targetPort: {{ index .Values.networkPorts .Values.handshake_network "rs" }}
2323
protocol: UDP
2424
selector:
2525
app.kubernetes.io/name: {{ include "handshake-node.name" . }}

0 commit comments

Comments
 (0)