Files
k8scd/lingo/lingo-frontend-deployment.yaml
T
2026-02-02 21:49:02 +01:00

33 lines
642 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: ghcr.io/rubenhensen/lingo-frontend:master
name: lingo-frontend
ports:
- containerPort: 8001
protocol: TCP
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
restartPolicy: Always