Kubernetes
Kubernetes Manifest Generator
Build a Deployment, StatefulSet, DaemonSet, Job or CronJob with probes, resource limits and a hardened security context.
Workload
Ports
Resources
Options
Non-root, read-only root filesystem, all capabilities dropped.
HTTP probes on the first port.
Emitted as a second document.
Manifest · Deployment
- The memory request and limit differ, so this pod is Burstable. Setting them equal makes it Guaranteed, which protects it from eviction under node pressure.
- The probes point at /healthz and /readyz. Change these to paths your application actually serves — a probe against a missing path will restart the container in a loop.
- readOnlyRootFilesystem is enabled. If the application writes to disk, mount an emptyDir at that path or the container will fail.