~/kubernetes-yaml-generator
$

Kubernetes YAML Generator

Build Kubernetes manifests visually — configure resources with form fields, preview generated YAML in real-time, and export production-ready configs.

Presets

Basic

Labels

Annotations

Strategy

Containers

Container 1

Node Selector

Tolerations

Image Pull Secrets

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: app
          image: "nginx:latest"
          ports: - containerPort: 80
  name: http
  strategy:
    type: RollingUpdate
    rollingUpdate:
      maxSurge: "25%"
      maxUnavailable: "25%"