Generate, validate and export production-style K8s manifests across core, security and enterprise templates.
apiVersion: v1
kind: Namespace
metadata:
name: production
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
namespace: production
spec:
replicas: 2
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: my-app
image: nginx:latest
ports:
- containerPort: 80
env:
- name: NODE_ENV
value: production
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 300m
memory: 384Mi
---
apiVersion: v1
kind: Service
metadata:
name: my-app-svc
namespace: production
spec:
selector:
app: my-app
type: ClusterIP
ports:
- port: 80
targetPort: 80
Need more than a template?
From CI/CD and Kubernetes to cloud reliability, get hands-on delivery for your infrastructure goals.
DevOps Services →