DevSecOps

Kubernetes Manifest Linter

Paste a Kubernetes Deployment, Pod, or similar manifest to check for common misconfigurations: missing resource limits, missing health probes, :latest image tags, and privileged containers. Checks run client-side โ€” your manifest is not transmitted.

Calculations run locally in your browser

Kubernetes Manifest Linter

The Kubernetes Manifest Linter checks YAML manifests for missing resource limits, missing health probes, :latest image tags, and privileged security contexts.

โ€ข Review a manifest before deploying to production

โ€ข Audit a team member's PR for K8s security issues

โ€ข Generate evidence that manifests meet a security baseline

โ€ข Catch :latest and privileged flags before a security review

Continue with Utility Matrix tools for the next decision in this workflow.
Browse tools โ†’
What does this tool tell you?
The Kubernetes Manifest Linter checks YAML manifests for missing resource limits, missing health probes, :latest image tags, and privileged security contexts.
What affects the result most?
Image tag :latest (non-deterministic builds). securityContext.privileged: true (host kernel access). Missing resources.limits (unbounded resource use).
How should I use the result?
Treat the tool's output as a first-pass check, not a proof of correctness. A clean pass means no issues in the patterns this tool recognizes; a failure points to a specific problem you can investigate in your source. The underlying spec is the authoritative source for edge cases.