Skip to main content
K8s

Kubernetes Manifest Generator

v1.0.1

Generate Kubernetes Deployment, Service, and Ingress manifests.

Kubernetes manifest generator for Deployments, Services, ConfigMaps, and Ingress resources with configurable parameters.

How to use
  • Select the resource type from the left panel and fill in the required fields.
  • Toggle Advanced to expose less common options like resource limits and affinity rules.
  • Copy the generated YAML and apply it with `kubectl apply -f -`.
Settings
deployment.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:alpine
          ports:
            - containerPort: 80
          resources:
            requests:
              cpu: "100m"
              memory: "128Mi"
            limits:
              cpu: "500m"
              memory: "256Mi"