You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/reference/kubernetes-api/service-resources/ingress-v1.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,14 +109,16 @@ IngressSpec describes the Ingress the user wishes to exist.
109
109
110
110
-**rules.http.paths.pathType** (string), required
111
111
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
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
113
115
done on a path element by element basis. A path element refers is the
114
116
list of labels in the path split by the '/' separator. A request is a
115
117
match for path p if every p is an element-wise prefix of p of the
116
118
request path. Note that if the last element of the path is a substring
117
119
of the last element in request path, it is not a match (e.g. /foo/bar
118
120
matches /foo/bar/baz, but does not match /foo/barbaz).
119
-
*ImplementationSpecific: Interpretation of the Path matching is up to
121
+
-`"ImplementationSpecific"` Interpretation of the Path matching is up to
120
122
the IngressClass. Implementations can treat this as a separate PathType
121
123
or treat it identically to Prefix or Exact path types.
122
124
Implementations are required to support all path types.
0 commit comments