Convert between YAML and JSON. Works with K8s manifests, Docker Compose, CI configs, and more.
{
"apiVersion": "apps/v1",
"kind": "Deployment",
"metadata": {
"name": "web-app",
"namespace": "production",
"labels": {
"app": "web-app",
"tier": "frontend"
}
},
"spec": {
"replicas": 3,
"selector": {
"matchLabels": {
"app": "web-app"
}
},
"template": {
"metadata": {
"labels": {
"app": "web-app"
}
},
"spec": {
"containers": [
{
"name": "web-app",
"image": "nginx:1.25-alpine",
"ports": [
{
"containerPort": 80
}
],
"resources": {
"limits": {
"cpu": "500m",
"memory": "128Mi"
},
"requests": {
"cpu": "250m",
"memory": "64Mi"
}
},
"livenessProbe": {
"httpGet": {
"path": "/healthz",
"port": 80
},
"initialDelaySeconds": 10,
"periodSeconds": 5
}
}
]
}
}
}
}Everything runs in your browser. Your data never leaves your machine.