Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatamutyala committed Mar 6, 2024
1 parent d15c44a commit 9bf6fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ingress/ingress-annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ingress:
| `nginx.ingress.kubernetes.io/auth-proxy-set-headers` | string | Specifies the name of the ConfigMap containing custom headers to be passed to the authentication backend. | Not set | `nginx.ingress.kubernetes.io/auth-proxy-set-headers: "custom-headers-map"` - Uses the 'custom-headers-map' ConfigMap for custom headers. |
| `nginx.ingress.kubernetes.io/auth-snippet` | string | Adds custom configuration to the authentication location block. | Not set | `nginx.ingress.kubernetes.io/auth-snippet: "proxy_set_header X-Auth-Request-Redirect $request_uri;"` - Adds a custom proxy_set_header directive. |
| `nginx.ingress.kubernetes.io/enable-global-auth` | "true" or "false" | Enables or disables global authentication for all paths under the host. | "false" | `nginx.ingress.kubernetes.io/enable-global-auth: "true"` - Enables global authentication for all paths. |
| `nginx.ingress.kubernetes.io/backend-protocol` | string | Specifies the protocol used to communicate with the backend service. | "HTTP" | `nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"` - Communicates with the backend over HTTPS. |
| `nginx.ingress.kubernetes.io/backend-protocol` | string | Specifies the protocol used to communicate with the backend service. Value values: HTTP, HTTPS, AUTO_HTTP, GRPC, GRPCS and FCGI | "HTTP" | `nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"` - Communicates with the backend over HTTPS. |
| `nginx.ingress.kubernetes.io/canary` | "true" or "false" | Enables or disables canary deployment for the ingress. | "false" | `nginx.ingress.kubernetes.io/canary: "true"` - Activates canary deployment for the ingress. |
| `nginx.ingress.kubernetes.io/canary-by-header` | string | Specifies a header name to route requests to the canary service. | Not set | `nginx.ingress.kubernetes.io/canary-by-header: "CanaryByHeaderName"` - Routes requests with the specified header to the canary. |
| `nginx.ingress.kubernetes.io/canary-by-header-value` | string | Specifies a header value to route requests to the canary service. | Not set | `nginx.ingress.kubernetes.io/canary-by-header-value: "DoCanary"` - Routes requests with the specified header value to the canary. |
Expand Down

0 comments on commit 9bf6fe6

Please sign in to comment.