For a simple canary, host app.city.example should send path / to Service app-stable and path /beta to Service app-canary. Which Ingress design achieves that split?
Select an answer to reveal the explanation.
Short Explanation
Canary on a budget: keep stable on / and park the experiment under /beta. Two Ingress paths, two Services—easy to reason about. SessionAffinity alone will not path-split for you.
Full Explanation
Path-based Ingress routing can implement a simple canary by directing a dedicated path such as /beta to a canary Service while / remains on stable. sessionAffinity and headless Services do not provide path splitting, and Jobs are not HTTP routers.