Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add note about path prefix matching behavior for HTTPRoute config #17860

Merged
merged 2 commits into from
Jun 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,10 @@ Specifies the HTTP method to match.

Specifies type of match for the path: `"exact"`, `"prefix"`, or `"regex"`.

-> **Note:** Prefix matching uses simple string matching when comparing to the path. This differs slightly from the
[Kubernetes Gateway API specification](https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io%2fv1beta1.PathMatchType)
which declares that path prefix matching is done on a path element by element basis.
nathancoleman marked this conversation as resolved.
Show resolved Hide resolved

Jeff-Apple marked this conversation as resolved.
Show resolved Hide resolved
#### Values

- Default: none
Expand Down