Kubernetes · In-browser

Kubernetes Manifest Generator

Fill in the fields and get clean, valid YAML for a Deployment, Service, or ConfigMap — ready to paste into your repo or pipe into kubectl apply.

Resource kind
Environment variables

Deployment.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
  name: web
  labels:
    app: web
spec:
  replicas: 3
  selector:
    matchLabels:
      app: web
  template:
    metadata:
      labels:
        app: web
    spec:
      containers:
        - name: web
          image: nginx:1.27
          ports:
            - containerPort: 80
          env:
            - name: LOG_LEVEL
              value: info

Going deeper than a quick tool?

These utilities are on us. When you're prepping for real interviews, our cloud & DevOps kits go from fundamentals to scenario questions — and our free resource library has cheatsheets and infographics to keep beside you.