Recall & Review
beginner
What is the Pod Security Admission Controller in Kubernetes?
It is a built-in Kubernetes feature that checks pods against security policies before they are allowed to run, helping to enforce security standards.
Click to reveal answer
beginner
Name the three Pod Security Admission Controller policy levels.
The three levels are: Privileged, Baseline, and Restricted. Each level defines different security restrictions for pods.
Click to reveal answer
intermediate
How does the Pod Security Admission Controller enforce policies?
It intercepts pod creation or update requests and checks if the pod's security settings meet the policy. If not, it rejects the request.
Click to reveal answer
intermediate
What is the difference between the Baseline and Restricted policy levels?
Baseline allows common, less risky permissions for pods, while Restricted enforces stricter rules to minimize security risks.
Click to reveal answer
advanced
How can you enable the Pod Security Admission Controller in a Kubernetes cluster?
You enable it by configuring the API server with the --enable-admission-plugins flag including PodSecurity, and setting namespace labels to specify the policy level.
Click to reveal answer
Which Kubernetes feature checks pod security settings before allowing them to run?
✗ Incorrect
The Pod Security Admission Controller validates pod security settings before admission.
What are the three policy levels of Pod Security Admission Controller?
✗ Incorrect
The three levels are Privileged, Baseline, and Restricted.
Which policy level allows the most permissions to pods?
✗ Incorrect
Privileged policy allows the most permissions.
How does the Pod Security Admission Controller reject a pod?
✗ Incorrect
It blocks pod creation requests that do not meet security policies.
How do you specify which Pod Security policy applies to a namespace?
✗ Incorrect
Namespace labels define which Pod Security policy level applies.
Explain how the Pod Security Admission Controller helps improve Kubernetes cluster security.
Think about how it acts like a security guard for pods.
You got /4 concepts.
Describe the differences between the Privileged, Baseline, and Restricted Pod Security policies.
Compare the level of permissions allowed by each policy.
You got /4 concepts.