Skip to content

Commit ef1d2fc

Browse files
authored
fix: resolve break introduced by external traffic policy applied to headless svc (#876)
Signed-off-by: Nathan Klick <[email protected]>
1 parent a9c5a89 commit ef1d2fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/fullstack-deployment/templates/services/envoy-svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ metadata:
1717
spec:
1818
{{- if $envoyProxy.loadBalancerEnabled }}
1919
type: LoadBalancer
20-
{{- end }}
2120
externalTrafficPolicy: Local
21+
{{- end }}
2222
selector:
2323
app: envoy-proxy-{{ $node.name }}
2424
ports:

charts/fullstack-deployment/templates/services/network-node-svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ spec:
1919
clusterIP: None
2020
{{- else }}
2121
type: {{ $defaults.serviceType | default "ClusterIP" }}
22+
externalTrafficPolicy: Local
2223
{{- end }}
2324
publishNotReadyAddresses: true
24-
externalTrafficPolicy: Local
2525
selector:
2626
app: network-{{ $nodeConfig.name }}
2727
ports:

0 commit comments

Comments
 (0)