A Deployment must meet common Pod Security restricted-level expectations for an ordinary app. Which checklist item belongs?
Select an answer to reveal the explanation.
Short Explanation
Restricted posture is a short packing list: non-root, no privilege escalation, capabilities dropped, no privileged flag. Host networking and UID 0 are the opposite of that packing list.
Full Explanation
Pod Security restricted baselines commonly expect non-root execution, allowPrivilegeEscalation false, capabilities dropped (often ALL), and no privileged containers, among related constraints. Enabling privileged/hostNetwork or running as root conflicts with that posture. Omitting securityContext does not make a Deployment restricted-compliant by itself.