JSON Formatter for Kubernetes

Your data never leaves your browser

Format K8s manifests to verify structure before applying to your cluster.

Example

{"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "web-app"}, "spec": {"replicas": 3, "template": {"spec": {"containers": [{"name": "web", "image": "node:22", "ports": [{"containerPort": 8080}]}]}}}}

Tips

  1. 1Format kubectl -o json output.
  2. 2Tree view for resource limits.
  3. 3Convert to YAML with converter.

Frequently Asked Questions

kubectl output?

Yes. Paste directly.

Multi-document?

Convert each YAML doc separately.

Helm values?

JSON format only. Use YAML converter.