A municipal CMS must send /v2 traffic to a green Service and keep / on blue through one hostname. Which Ingress capability provides that split?
Select an answer to reveal the explanation.
Short Explanation
Same hostname, different hallways: path rules send /v2 to green and leave / on blue. Ingress path matching is how you split blue/green HTTP backends without two public hostnames.
Full Explanation
Ingress path rules map URL path prefixes (or other path types supported by the controller/API) to backend Services on the same host. That enables patterns like blue/green or versioned APIs behind one hostname. Affinity, CoreDNS search paths, and EndpointSlice topology hints do not implement HTTP path routing.