Kubernetes Manifest Maker

Interactively configure and generate standard K8s Deployment and Service YAMLs.

Preview YAML

apiVersion: apps/v1 kind: Deployment metadata: name: my-service labels: app: my-service spec: replicas: 3 selector: matchLabels: app: my-service template: metadata: labels: app: my-service spec: containers: - name: my-service image: my-service:latest ports: - containerPort: 8080 --- apiVersion: v1 kind: Service metadata: name: my-service spec: selector: app: my-service ports: - protocol: TCP port: 80 targetPort: 8080