Skip to content

Commit 9b683e4

Browse files
authored
Merge pull request #6326 from kolorful/master
Fix liveness and readiness probe path in daemonset chart
2 parents a6d6035 + 1718432 commit 9b683e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/ingress-nginx/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: ingress-nginx
3-
version: 3.7.0
3+
version: 3.7.1
44
appVersion: 0.40.2
55
home: https://github.com/kubernetes/ingress-nginx
66
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer

charts/ingress-nginx/templates/controller-daemonset.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ spec:
138138
{{- end }}
139139
livenessProbe:
140140
httpGet:
141-
path: /healthz
141+
path: {{ .Values.controller.healthCheckPath }}
142142
port: {{ .Values.controller.livenessProbe.port }}
143143
scheme: HTTP
144144
initialDelaySeconds: {{ .Values.controller.livenessProbe.initialDelaySeconds }}
@@ -148,7 +148,7 @@ spec:
148148
failureThreshold: {{ .Values.controller.livenessProbe.failureThreshold }}
149149
readinessProbe:
150150
httpGet:
151-
path: /healthz
151+
path: {{ .Values.controller.healthCheckPath }}
152152
port: {{ .Values.controller.readinessProbe.port }}
153153
scheme: HTTP
154154
initialDelaySeconds: {{ .Values.controller.readinessProbe.initialDelaySeconds }}

0 commit comments

Comments
 (0)