Files
k8scd/lingo/lingo-frontend-deployment.yaml
Ruben Hensen 0d956391ad Update lingo-frontend image to master-46bddb5
Deploy bonus round improvements:
- Fix letter swap algorithm
- Add arrow key controls for team selection
- Add swap animation
- Add configurable bonus interval
- Fix Enter key conflicts
2026-02-06 18:14:42 +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-46bddb5
name: lingo-frontend
ports:
- containerPort: 80
protocol: TCP
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
restartPolicy: Always