@@ -27,7 +27,7 @@ For AGIC to observe an ingress resource, the resource *must be annotated* with `
27
27
| [ appgw.ingress.kubernetes.io/health-probe-hostname] ( #custom-health-probe ) | ` string ` | ` 127.0.0.1 ` ||
28
28
| [ appgw.ingress.kubernetes.io/health-probe-port] ( #custom-health-probe ) | ` int32 ` | ` 80 ` ||
29
29
| [ 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 ` ||
31
31
| [ appgw.ingress.kubernetes.io/health-probe-interval] ( #custom-health-probe ) | ` int32 ` | ` 30 ` (seconds) ||
32
32
| [ appgw.ingress.kubernetes.io/health-probe-timeout] ( #custom-health-probe ) | ` int32 ` | ` 30 ` (seconds) ||
33
33
| [ 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)
126
126
- `health-probe-hostname` : This annotation allows a custom hostname on the health probe.
127
127
- `health-probe-port` : This annotation configures a custom port for the health probe.
128
128
- `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.
130
130
- `health-probe-interval` : This annotation defines the interval at which the health probe runs.
131
131
- `health-probe-timeout` : This annotation defines how long the health probe waits for a response before failing the probe.
132
132
- `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)
137
137
appgw.ingress.kubernetes.io/health-probe-hostname: "contoso.com"
138
138
appgw.ingress.kubernetes.io/health-probe-port: 80
139
139
appgw.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"
141
141
appgw.ingress.kubernetes.io/health-probe-interval: 30
142
142
appgw.ingress.kubernetes.io/health-probe-timeout: 30
143
143
appgw.ingress.kubernetes.io/health-probe-unhealthy-threshold: 2
@@ -155,7 +155,7 @@ metadata:
155
155
appgw.ingress.kubernetes.io/health-probe-hostname: "contoso.com"
156
156
appgw.ingress.kubernetes.io/health-probe-port: 81
157
157
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"
159
159
appgw.ingress.kubernetes.io/health-probe-interval: 31
160
160
appgw.ingress.kubernetes.io/health-probe-timeout: 31
161
161
appgw.ingress.kubernetes.io/health-probe-unhealthy-threshold: 2
0 commit comments