File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : ingress-nginx
3
- version : 3.7.0
3
+ version : 3.7.1
4
4
appVersion : 0.40.2
5
5
home : https://github.com/kubernetes/ingress-nginx
6
6
description : Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ spec:
138
138
{{- end }}
139
139
livenessProbe :
140
140
httpGet :
141
- path : /healthz
141
+ path : {{ .Values.controller.healthCheckPath }}
142
142
port : {{ .Values.controller.livenessProbe.port }}
143
143
scheme : HTTP
144
144
initialDelaySeconds : {{ .Values.controller.livenessProbe.initialDelaySeconds }}
@@ -148,7 +148,7 @@ spec:
148
148
failureThreshold : {{ .Values.controller.livenessProbe.failureThreshold }}
149
149
readinessProbe :
150
150
httpGet :
151
- path : /healthz
151
+ path : {{ .Values.controller.healthCheckPath }}
152
152
port : {{ .Values.controller.readinessProbe.port }}
153
153
scheme : HTTP
154
154
initialDelaySeconds : {{ .Values.controller.readinessProbe.initialDelaySeconds }}
You can’t perform that action at this time.
0 commit comments