[bitnami/nginx-ingress-controller] Use correct port for ingress-nginx healthchecks (#4739)

This commit is contained in:
Kirill Buev
2020-12-16 18:29:17 +01:00
committed by GitHub
parent 6281d55688
commit cdf577f4d4
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -26,4 +26,4 @@ name: nginx-ingress-controller
sources:
- https://github.com/bitnami/bitnami-docker-nginx-ingress-controller
- https://github.com/kubernetes/ingress-nginx
version: 7.0.3
version: 7.0.4
@@ -240,7 +240,7 @@ livenessProbe:
enabled: true
httpGet:
path: /healthz
port: http
port: "{{ .Values.containerPorts.metrics }}"
scheme: HTTP
failureThreshold: 3
initialDelaySeconds: 10
@@ -251,7 +251,7 @@ readinessProbe:
enabled: true
httpGet:
path: /healthz
port: http
port: "{{ .Values.containerPorts.metrics }}"
scheme: HTTP
failureThreshold: 3
initialDelaySeconds: 10
+2 -2
View File
@@ -240,7 +240,7 @@ livenessProbe:
enabled: true
httpGet:
path: /healthz
port: http
port: "{{ .Values.containerPorts.metrics }}"
scheme: HTTP
failureThreshold: 3
initialDelaySeconds: 10
@@ -251,7 +251,7 @@ readinessProbe:
enabled: true
httpGet:
path: /healthz
port: http
port: "{{ .Values.containerPorts.metrics }}"
scheme: HTTP
failureThreshold: 3
initialDelaySeconds: 10