Kubernetes YAML Generator
Generate Kubernetes deployment, service, and ingress YAML manifests visually.
Resource Types
Basic Settings
Resource Limits
Container Ports
Environment Variables
No environment variables.
Service Settings
Generated YAML
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
namespace: default
labels:
app: my-app
spec:
replicas: 3
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: my-app
image: nginx:latest
ports:
- containerPort: 80
protocol: TCP
resources:
requests:
cpu: "100m"
memory: "128Mi"
limits:
cpu: "500m"
memory: "256Mi"
---
apiVersion: v1
kind: Service
metadata:
name: my-app
namespace: default
spec:
type: ClusterIP
selector:
app: my-app
ports:
- port: 80
targetPort: 80
protocol: TCPRelated tools
JSON to YAML ConverterConverter
Convert JSON to YAML with configurable indentation.
YAML to JSON ConverterConverter
Convert YAML to JSON and JSON to YAML locally in your browser.
YAML ValidatorValidator
Validate YAML syntax with tab detection, duplicate keys, and auto-fix.
Crontab GeneratorDevOps
Visual crontab expression builder with presets and next run times.
Nginx Config GeneratorDevOps
Generate nginx server block configurations with SSL, gzip, and location blocks.
.htaccess GeneratorDevOps
Generate .htaccess rules for redirects, rewrites, CORS, caching, and error pages.