@@ -27,7 +27,7 @@ For AGIC to observe an ingress resource, the resource *must be annotated* with `
2727| [ appgw.ingress.kubernetes.io/health-probe-hostname] ( #custom-health-probe ) | ` string ` | ` 127.0.0.1 ` ||
2828| [ appgw.ingress.kubernetes.io/health-probe-port] ( #custom-health-probe ) | ` int32 ` | ` 80 ` ||
2929| [ appgw.ingress.kubernetes.io/health-probe-path] ( #custom-health-probe ) | ` string ` | ` / ` ||
30- | [ appgw.ingress.kubernetes.io/health-probe-status-code ] ( #custom-health-probe ) | ` string ` | ` 200-399 ` ||
30+ | [ appgw.ingress.kubernetes.io/health-probe-status-codes ] ( #custom-health-probe ) | ` string ` | ` 200-399 ` ||
3131| [ appgw.ingress.kubernetes.io/health-probe-interval] ( #custom-health-probe ) | ` int32 ` | ` 30 ` (seconds) ||
3232| [ appgw.ingress.kubernetes.io/health-probe-timeout] ( #custom-health-probe ) | ` int32 ` | ` 30 ` (seconds) ||
3333| [ appgw.ingress.kubernetes.io/health-probe-unhealthy-threshold] ( #custom-health-probe ) | ` int32 ` | ` 3 ` ||
@@ -126,7 +126,7 @@ You can [configure Application Gateway](./application-gateway-probe-overview.md)
126126- `health-probe-hostname` : This annotation allows a custom hostname on the health probe.
127127- `health-probe-port` : This annotation configures a custom port for the health probe.
128128- `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.
129+ - `health-probe-status-codes ` : This annotation allows the health probe to accept different HTTP status codes.
130130- `health-probe-interval` : This annotation defines the interval at which the health probe runs.
131131- `health-probe-timeout` : This annotation defines how long the health probe waits for a response before failing the probe.
132132- `health-probe-unhealthy-threshold` : This annotation defines how many health probes must fail for the backend to be marked as unhealthy.
@@ -137,7 +137,7 @@ You can [configure Application Gateway](./application-gateway-probe-overview.md)
137137appgw.ingress.kubernetes.io/health-probe-hostname: "contoso.com"
138138appgw.ingress.kubernetes.io/health-probe-port: 80
139139appgw.ingress.kubernetes.io/health-probe-path: "/"
140- appgw.ingress.kubernetes.io/health-probe-status-code : "100-599"
140+ appgw.ingress.kubernetes.io/health-probe-status-codes : "100-599"
141141appgw.ingress.kubernetes.io/health-probe-interval: 30
142142appgw.ingress.kubernetes.io/health-probe-timeout: 30
143143appgw.ingress.kubernetes.io/health-probe-unhealthy-threshold: 2
@@ -155,7 +155,7 @@ metadata:
155155 appgw.ingress.kubernetes.io/health-probe-hostname: "contoso.com"
156156 appgw.ingress.kubernetes.io/health-probe-port: 81
157157 appgw.ingress.kubernetes.io/health-probe-path: "/probepath"
158- appgw.ingress.kubernetes.io/health-probe-status-code : "100-599"
158+ appgw.ingress.kubernetes.io/health-probe-status-codes : "100-599"
159159 appgw.ingress.kubernetes.io/health-probe-interval: 31
160160 appgw.ingress.kubernetes.io/health-probe-timeout: 31
161161 appgw.ingress.kubernetes.io/health-probe-unhealthy-threshold: 2
0 commit comments