An API Ingress must match only the literal path /v1/status and must not match /v1/status/details. Which pathType should the rule use?
Select an answer to reveal the explanation.
Short Explanation
Exact is a locked door for one hallway; Prefix is a whole wing. For only /v1/status and not /v1/status/details, use pathType Exact. Prefix would gladly walk further down the path.
Full Explanation
Ingress pathType Exact matches the request path precisely. Prefix matches the path and any longer paths that share that prefix, so /v1/status as Prefix also matches /v1/status/details. ImplementationSpecific behavior depends on the controller. Choosing Exact for /v1/status satisfies a literal-only match requirement.