A city cluster must isolate Pods in the finance namespace so that, by default, no other Pods can reach them until explicit allow rules are added. Which NetworkPolicy approach achieves that default-deny posture for selected Pods?
Select an answer to reveal the explanation.
Short Explanation
Default-deny is like locking every office door first, then handing out keys with allow rules — empty/deny ingress on a NetworkPolicy selects who starts locked.
Full Explanation
NetworkPolicies that select Pods and omit allow-listed ingress peers implement a default-deny posture for those Pods once a supporting CNI enforces policy. Additional policies or rules can then permit specific sources. RBAC ClusterRoles, Service types, and DNS ConfigMaps do not implement Pod network isolation.