From e3729ec60024a37bf6c3232707cd5b11e0c3b4da Mon Sep 17 00:00:00 2001 From: Sid Karunaratne Date: Fri, 19 Apr 2024 11:06:04 +0200 Subject: [PATCH] Fix HTTPRoute path type --- docs/content/routing/providers/kubernetes-gateway.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/routing/providers/kubernetes-gateway.md b/docs/content/routing/providers/kubernetes-gateway.md index d7eea96cb8..e07a347ed8 100644 --- a/docs/content/routing/providers/kubernetes-gateway.md +++ b/docs/content/routing/providers/kubernetes-gateway.md @@ -252,7 +252,7 @@ Kubernetes cluster before creating `HTTPRoute` objects. | [6] | `rules` | A list of HTTP matchers, filters and actions. | | [7] | `matches` | Conditions used for matching the rule against incoming HTTP requests. Each match is independent, i.e. this rule will be matched if **any** one of the matches is satisfied. | | [8] | `path` | An HTTP request path matcher. If this field is not specified, a default prefix match on the "/" path is provided. | -| [9] | `type` | Type of match against the path Value (supported types: `Exact`, `Prefix`). | +| [9] | `type` | Type of match against the path Value (supported types: `Exact`, `PathPrefix`). | | [10] | `value` | The value of the HTTP path to match against. | | [11] | `headers` | Conditions to select a HTTP route by matching HTTP request headers. | | [12] | `type` | Type of match for the HTTP request header match against the `values` (supported types: `Exact`). |