Skip to content

Commit 4ceff34

Browse files
authored
Merge pull request #33265 from nate-double-u/api-reference-multi-pages-update
Update API Reference multi-pages for v1.24
2 parents ca209b7 + 0e4d4b6 commit 4ceff34

File tree

1 file changed

+2
-4
lines changed
  • content/en/docs/reference/kubernetes-api/service-resources

1 file changed

+2
-4
lines changed

content/en/docs/reference/kubernetes-api/service-resources/ingress-v1.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,14 @@ IngressSpec describes the Ingress the user wishes to exist.
109109

110110
- **rules.http.paths.pathType** (string), required
111111

112-
PathType determines the interpretation of the Path matching. PathType can be one of the following enum values:
113-
- `"Exact"` Matches the URL path exactly.
114-
- `"Prefix"` Matches based on a URL path prefix split by '/'. Matching is
112+
PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is
115113
done on a path element by element basis. A path element refers is the
116114
list of labels in the path split by the '/' separator. A request is a
117115
match for path p if every p is an element-wise prefix of p of the
118116
request path. Note that if the last element of the path is a substring
119117
of the last element in request path, it is not a match (e.g. /foo/bar
120118
matches /foo/bar/baz, but does not match /foo/barbaz).
121-
- `"ImplementationSpecific"` Interpretation of the Path matching is up to
119+
* ImplementationSpecific: Interpretation of the Path matching is up to
122120
the IngressClass. Implementations can treat this as a separate PathType
123121
or treat it identically to Prefix or Exact path types.
124122
Implementations are required to support all path types.

0 commit comments

Comments
 (0)