Files
k8scd/lingo/lingo-frontend-deployment.yaml
T
Ruben Hensen ebac0c1713 Update lingo-frontend to master-83cda82
Updates container image to include MIME type fix.
2026-02-05 16:50:29 +01:00

33 lines
684 B
YAML

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