All Tools View Categories About Contact Privacy

Pod Security Standard Checker

Check a pasted Pod or workload against the Kubernetes Pod Security Standards (privileged, baseline, restricted).

Runs entirely in your browser - nothing is uploaded and no cluster connection is made.
-
privileged
-
baseline
-
restricted
Your PSS check results will appear here.

About Pod Security Standard Checker

The Pod Security Standards (PSS) describe three policies: Privileged, Baseline and Restricted. The Pod Security Standard Checker parses a pasted Pod or workload manifest and reports which controls fail for each policy.

It checks host namespaces, privileged containers, dangerous capability additions, runAsNonRoot, allowPrivilegeEscalation, dropping ALL capabilities, seccompProfile and non-root runAsUser. The pod template is extracted from Deployments/StatefulSets/DaemonSets automatically.

Parsing is done with a small tolerant YAML reader (no external dependency). Problems are reported in a clear panel. Everything runs locally and nothing is uploaded.

Features

  • Three policies - Privileged, Baseline, Restricted.
  • Common controls - namespaces, privilege, capabilities, seccomp, users.
  • Workload aware - extracts pod spec from Deployment/StatefulSet/DaemonSet.
  • Paste input - no upload, fully local.
  • Copy / Download / Print - take the report anywhere.

How to Use

  1. Paste a Pod or workload YAML.
  2. Run the check and read the per-policy results.
  3. Copy or download the report.

Examples

Example 1 - privileged pod. hostPID + privileged -> Baseline and Restricted fail.

Example 2 - restricted pod. runAsNonRoot, drop ALL, seccomp RuntimeDefault -> all pass.

Benefits

  • Auditable - see exactly which control fails.
  • Fast - instant client-side feedback.
  • Private - all in the browser.
  • Educational - learn PSS controls.
  • Copy, download or print - take it anywhere.

Frequently Asked Questions

What are the Pod Security Standards?
PSS defines three policies - Privileged (unrestricted), Baseline (minimally restrictive, prevents known privilege escalations) and Restricted (heavily restricted, follows current best practice).
What input does it accept?
A Pod manifest, or a workload with a pod template (Deployment, StatefulSet, DaemonSet, Job/CronJob) - the pod spec is extracted automatically.
Which controls are checked?
Host namespaces, privileged containers, dangerous capabilities, runAsNonRoot, allowPrivilegeEscalation, dropping ALL capabilities, seccompProfile and non-root runAsUser.
Is this a full admission controller?
No. It is a quick client-side analyzer that mirrors the common PSS controls so you can catch issues before applying a manifest.
Does this connect to a cluster?
No. Everything runs in your browser and nothing is uploaded.
Can I copy the report?
Yes. Copy, download or print the check results.