Files
k8scd/lingo/lingo-deployment.yaml
T
Ruben Hensen 7217931316 Add lingo
2026-02-02 19:26:22 +01:00

33 lines
616 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: lingo
name: lingo
spec:
replicas: 1
selector:
matchLabels:
app: lingo
strategy:
type: Recreate
template:
metadata:
labels:
app: lingo
spec:
containers:
- image: rubenhensen/lingo:latest
name: lingo
ports:
- containerPort: 8001
protocol: TCP
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
restartPolicy: Always