Skip to content

Commit bcb6f09

Browse files
authored
fix: update chart services to use a local external traffic policy (#875)
Signed-off-by: Nathan Klick <[email protected]>
1 parent 24466ed commit bcb6f09

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ spec:
1818
{{- if $envoyProxy.loadBalancerEnabled }}
1919
type: LoadBalancer
2020
{{- end }}
21+
externalTrafficPolicy: Local
2122
selector:
2223
app: envoy-proxy-{{ $node.name }}
2324
ports:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ metadata:
1616
{{- include "fullstack.testLabels" $ | nindent 4 }}
1717
spec:
1818
type: {{ $defaults.serviceType | default "ClusterIP" }}
19+
externalTrafficPolicy: Local
1920
selector:
2021
app: haproxy-{{ $node.name }}
2122
ports:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ spec:
2121
type: {{ $defaults.serviceType | default "ClusterIP" }}
2222
{{- end }}
2323
publishNotReadyAddresses: true
24+
externalTrafficPolicy: Local
2425
selector:
2526
app: network-{{ $nodeConfig.name }}
2627
ports:

0 commit comments

Comments
 (0)