One Ingress should serve parks.example to Service parks-web and library.example to Service library-web. Which rule structure supports that name-based virtual hosting?
Select an answer to reveal the explanation.
Short Explanation
Two hostnames, two name tags on the Ingress. parks.example and library.example each get their own host rule pointing at the right Service. That is classic name-based virtual hosting.
Full Explanation
Ingress supports multiple hosts in spec.rules, enabling name-based virtual hosting so distinct DNS names map to different backends. Separate host entries for parks.example and library.example with their Services implement that design. NetworkPolicies, sysctls, and single-Service path hacks do not provide multi-host HTTP routing.