mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-22 15:30:34 +00:00
Fix connectionHealthCheck
connectionHealthCheck in submariner CR is a nested field but is being added as a variable. This means it is ignored and the field isn't set correctly in gateway pods. Signed-off-by: Vishal Thapar <5137689+vthapar@users.noreply.github.com>
This commit is contained in:
committed by
Stephen Kitt
parent
27eb25c8f6
commit
06ce316138
@@ -26,7 +26,10 @@ spec:
|
|||||||
globalCIDR: "{{ .Values.submariner.globalCidr }}"
|
globalCIDR: "{{ .Values.submariner.globalCidr }}"
|
||||||
serviceDiscoveryEnabled: {{ .Values.submariner.serviceDiscovery }}
|
serviceDiscoveryEnabled: {{ .Values.submariner.serviceDiscovery }}
|
||||||
cableDriver: {{ .Values.submariner.cableDriver }}
|
cableDriver: {{ .Values.submariner.cableDriver }}
|
||||||
connectionHealthCheck: {{ .Values.submariner.healthcheckEnabled }}
|
connectionHealthCheck:
|
||||||
|
enabled: {{ .Values.submariner.healthcheckEnabled }}
|
||||||
|
intervalSeconds: 1
|
||||||
|
maxPacketLossCount: 5
|
||||||
{{- with .Values.submariner.coreDNSCustomConfig }}
|
{{- with .Values.submariner.coreDNSCustomConfig }}
|
||||||
coreDNSCustomConfig:
|
coreDNSCustomConfig:
|
||||||
configmapName: .configmapName
|
configmapName: .configmapName
|
||||||
|
|||||||
Reference in New Issue
Block a user