Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/admin-guide/configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ data:
"disableIstioVirtualHost": false,
"disableIngressCreation": false,
"disableHTTPRouteTimeout": false,
"pathMatchType": "",
"pathTemplate": "/serving/{{ .Namespace }}/{{ .Name }}"
}
```
Expand Down Expand Up @@ -194,6 +195,17 @@ which would otherwise cause HTTPRoutes to be rejected with `Accepted=False/Unsup
- **Possible values:** `true`, `false`
- **Default:** `false`

### Path Match Type

Controls the path match type used in HTTPRoute rules when using Gateway API.
Set to `"PathPrefix"` for Gateway controllers (e.g. GKE Gateway) that do not support `RegularExpression` path matches,
which would otherwise cause HTTPRoutes to be rejected with `GWCER104: Paths must start with '/' character`.
When empty or unset, the default `RegularExpression` matching is used.

- **Global key:** `pathMatchType`
- **Possible values:** `""`, `"PathPrefix"`
- **Default:** `""`

### Path Template

Template for generating path-based URLs for serverless deployment.
Expand Down