The city needs HTTPS-ready HTTP routing so host permit.city.example path / reaches Service permit-ui on port 80. Which Ingress configuration expresses that intent?
Select an answer to reveal the explanation.
Short Explanation
Ingress is the front-desk map: this hostname and path go to that Service. Put permit.city.example and path / on a rule that backends to permit-ui:80. NetworkPolicies and ConfigMaps are not HTTP host routers.
Full Explanation
Ingress resources define host and path rules that forward HTTP(S) traffic to Service backends. Specifying host permit.city.example, a path such as /, and backend service permit-ui port 80 matches the requirement. NetworkPolicies control allow/deny connectivity, headless Services expose Pod DNS, and ConfigMaps store configuration—they do not implement Ingress host/path routing.