You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going through the AGIC annotation docs and noticed a small typo that might be worth updating. On this page:
Application Gateway Ingress Controller annotations | Microsoft Learn
The annotation is listed as:
appgw.ingress.kubernetes.io/health-probe-status-code
But the correct one that works is:
appgw.ingress.kubernetes.io/health-probe-status-codes
Just missing an “s” at the end.
You can [configure Application Gateway](./application-gateway-probe-overview.md) to send custom health probes to the backend address pool. When the following annotations are present, the Kubernetes ingress controller [creates a custom probe](./application-gateway-create-probe-portal.md) to monitor the backend application. The controller then applies the changes to Application Gateway.
125
+
You can [configure Application Gateway](./application-gateway-probe-overview.md) to send custom health probe to the backend address pool. When the following annotations are present, the Kubernetes ingress controller [creates a custom probe](./application-gateway-create-probe-portal.md) to monitor the backend application. The controller then applies the changes to Application Gateway.
125
126
126
127
- `health-probe-hostname`: This annotation allows a custom hostname on the health probe.
127
128
- `health-probe-port`: This annotation configures a custom port for the health probe.
128
129
- `health-probe-path`: This annotation defines a path for the health probe.
129
-
- `health-probe-status-code`: This annotation allows the health probe to accept different HTTP status codes.
130
+
- `health-probe-status-codes`: This annotation allows the health probe to accept different HTTP status codes.
130
131
- `health-probe-interval`: This annotation defines the interval at which the health probe runs.
131
132
- `health-probe-timeout`: This annotation defines how long the health probe waits for a response before failing the probe.
132
133
- `health-probe-unhealthy-threshold`: This annotation defines how many health probes must fail for the backend to be marked as unhealthy.
@@ -137,7 +138,7 @@ You can [configure Application Gateway](./application-gateway-probe-overview.md)
0 commit comments