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
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,16 +109,14 @@ 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 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
115
113
done on a path element by element basis. A path element refers is the
116
114
list of labels in the path split by the '/' separator. A request is a
117
115
match for path p if every p is an element-wise prefix of p of the
118
116
request path. Note that if the last element of the path is a substring
119
117
of the last element in request path, it is not a match (e.g. /foo/bar
120
118
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
122
120
the IngressClass. Implementations can treat this as a separate PathType
123
121
or treat it identically to Prefix or Exact path types.
124
122
Implementations are required to support all path types.
0 commit comments