Files
k8scd/lingo/lingo-api-deployment.yaml
Ruben Hensen ee1be4b802 Update lingo-api image to master-4404fe5
Fix hint letter logic:
- Don't add hint when only 1 letter is missing
- Applies to both timeout and invalid word scenarios
2026-02-06 18:20:37 +01:00

33 lines
654 B
YAML

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