Skip to content

Commit 0477940

Browse files
authored
Merge pull request #118344 from JoeyC-Dev/patch-2
Add note of health probe in ingress-basic.md
2 parents b2fc9e1 + a454c30 commit 0477940

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

articles/aks/ingress-basic.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ helm install ingress-nginx ingress-nginx/ingress-nginx `
6868
--set controller.service.externalTrafficPolicy=Local
6969
```
7070

71+
> [!NOTE]
72+
> In this tutorial, "service.beta.kubernetes.io/azure-load-balancer-health-probe-request-path" is being set to "/healthz". This means if the response code of the requests to "/healthz" is not "200", the whole ingress controller will be down. You can modify the value to other URI in your own scenario. You cannot delete this part or unset the value, or the ingress controller will still be down.
73+
> The package "ingress-nginx" used in this tutorial, which is provided by [Kubernetes official](https://github.com/kubernetes/ingress-nginx), will always return "200" response code if requesting "/healthz", as it is designed as "[default backend](https://kubernetes.github.io/ingress-nginx/user-guide/default-backend/)" for users to have a quick start, unless it is being overwritten by ingress rules.
74+
7175
---
7276

7377
## Customized configuration

0 commit comments

Comments
 (0)