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

This commit is contained in:
Kirill Buev
2020-12-16 20:29:17 +03:00
committed by GitHub
parent 6281d55688
commit cdf577f4d4
3 changed files with 5 additions and 5 deletions

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

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

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