Problem Statement
In Kubernetes, which control enforces standardized pod restrictions like running as non-root?
Explanation
The Pod Security Standards define privileged, baseline, and restricted policies. The Pod Security Admission controller enforces these at the namespace level so pods meet your chosen profile.
Code Solution
SolutionRead Only
kubectl label ns prod pod-security.kubernetes.io/enforce=restricted
