File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ spec:
100100 args :
101101 - --csi-address=/csi/csi.sock
102102 - --probe-timeout=3s
103- - --health-port= {{ .Values.controller.livenessProbe.healthPort }}
103+ - --http-endpoint={{ .Values.controller.livenessProbe.host }}: {{ .Values.controller.livenessProbe.healthPort }}
104104 - --v=2
105105 imagePullPolicy : {{ .Values.image.livenessProbe.pullPolicy }}
106106 volumeMounts :
@@ -137,15 +137,12 @@ spec:
137137 fieldPath : spec.nodeName
138138 - name : CSI_ENDPOINT
139139 value : unix:///csi/csi.sock
140- ports :
141- - containerPort : {{ .Values.controller.livenessProbe.healthPort }}
142- name : healthz
143- protocol : TCP
144140 livenessProbe :
145141 failureThreshold : 5
146142 httpGet :
143+ host : {{ .Values.controller.livenessProbe.host }}
147144 path : /healthz
148- port : healthz
145+ port : {{ .Values.controller.livenessProbe.healthPort }}
149146 initialDelaySeconds : 30
150147 timeoutSeconds : 10
151148 periodSeconds : 30
Original file line number Diff line number Diff line change 5252 args :
5353 - --csi-address=/csi/csi.sock
5454 - --probe-timeout=3s
55- - --health-port= {{ .Values.node.livenessProbe.healthPort }}
55+ - --http-endpoint={{ .Values.node.livenessProbe.host }}: {{ .Values.node.livenessProbe.healthPort }}
5656 - --v=2
5757 imagePullPolicy : {{ .Values.image.livenessProbe.pullPolicy }}
5858 volumeMounts :
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ controller:
5353 runOnMaster : false
5454 runOnControlPlane : false
5555 livenessProbe :
56+ host : localhost
5657 healthPort : 29652
5758 logLevel : 5
5859 workingMountDir : /tmp
@@ -103,6 +104,7 @@ node:
103104 maxUnavailable : 1
104105 logLevel : 5
105106 livenessProbe :
107+ host : localhost
106108 healthPort : 29653
107109 affinity : {}
108110 nodeSelector : {}
You can’t perform that action at this time.
0 commit comments