gateway api v1.6.2 experimental

HTTPRoute.spec.rules[].matches[].path

Path specifies a HTTP request path matcher. If this field is not specified, a default prefix match on the "/" path is provided.

2 fields
HTTPRoute.spec.rules[].matches[].path fields and descriptions
Field / TypeDescription
type
string

Type specifies how to match against the path Value. Support: Core (Exact, PathPrefix) Support: Implementation-specific (RegularExpression)

  • enum: ["Exact","PathPrefix","RegularExpression"]
  • default: "PathPrefix"
value
string

Value of the HTTP path to match against.

  • default: "/"
  • maxLength: 1024