Review generated manifests against your cluster. ConfigMaps, Secrets, namespace, ingress controller, and storage provisioning must exist. TLS references a secret named after the workload; certificates are not provisioned automatically. Presets are starting points, not complete application installations.
Kubernetes Manifest Generator
Agent generation includes existing wizard settings. If environment fields contain data, use manual generation or clear those fields before using agent actions.
Agent tools require a browser with WebMCP support. You can use this tool manually.
Generate Kubernetes manifests using this wizard-style interface. Configure your deployment step by step, from basic settings to advanced options like resources and volumes.
Step 1: Basic Configuration
Start by configuring the basic properties of your Kubernetes deployment. These settings define the core aspects of your application.
Generated Manifests
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
namespace: default
labels:
app: my-app
spec:
replicas: 1
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: app
image: nginx:latest
ports:
- containerPort: 80
env: []
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi
volumeMounts: []
volumes: []
nodeSelector: {}
tolerations: []
---
apiVersion: v1
kind: Service
metadata:
name: my-app
namespace: default
spec:
selector:
app: my-app
ports:
- port: 80
targetPort: 80
About This Tool
This tool helps you generate Kubernetes manifests by walking you through a series of steps. It creates all necessary resources with best practices in mind.
- Basic configuration (name, image, replicas)
- Networking (ports, service creation)
- Environment variables
- Resource management (CPU and memory)
- Storage (volumes, mounts)
- Health checks (readiness and liveness probes)
- Ingress configuration
- Advanced features (service accounts, PDB, node selection)
Note: While this tool generates a good starting point, you might need to customize the manifests further based on your specific requirements. Always review and test the generated manifests before applying them to your cluster.
Privacy Note: Processing runs in your browser. When you use an agent, inputs and results may be shared with your agent provider. Avoid entering production secrets into agent-assisted drafts.