DNS Blade
DNS Tools
Domain
Email
Network
Web
Developer
Blog
Search tools
⌘K
All Tools
YAML ↔ JSON Converter
Convert between YAML and JSON format with live syntax validation and formatting.
YAML → JSON
JSON → YAML
Indent:
2 Spaces
4 Spaces
Clear
Input (YAML)
Load Sample
# Kubernetes Deployment Sample apiVersion: apps/v1 kind: Deployment metadata: name: web-app labels: app: frontend spec: replicas: 3 selector: matchLabels: app: frontend template: metadata: labels: app: frontend spec: containers: - name: nginx image: nginx:1.25-alpine ports: - containerPort: 80
Output (JSON)
Copy
Download
{ "apiVersion": "apps/v1", "kind": "Deployment", "metadata": { "name": "web-app", "labels": { "app": "frontend" } }, "spec": { "replicas": 3, "selector": { "matchLabels": { "app": "frontend" } }, "template": { "metadata": { "labels": { "app": "frontend" } }, "spec": { "containers": [ { "name": "nginx", "image": "nginx:1.25-alpine", "ports": [ { "containerPort": 80 } ] } ] } } } }