Lint Kubernetes manifests for identity, workload, health, resource, and security omissions.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
Manifest text is scanned for apiVersion, kind, metadata, labels, images, resources, probes, security context, and mutable tags. The report is advisory and does not contact an API server or run OpenAPI validation.
apiVersion: apps/v1
kind: Deployment
metadata:
name: web
spec:
template:
spec:
containers:
- name: web
image: nginx:latest
# Kubernetes Manifest Validation Kind: Deployment Errors: 0 | Warnings: 5 ## Warnings - Line 10: Avoid using ':latest' image tag - No labels defined - labels are recommended for organization - No resource requests/limits defined - recommended for production - No livenessProbe defined - recommended for reliability - No readinessProbe defined - recommended for zero-downtime deploys ## Info - No namespace specified - will use 'default' - No securityContext defined - consider adding for security hardening Manifest structure is valid!
CI gates, platform reviews, and security checks lint manifests before apply.