Add lingo

This commit is contained in:
Ruben Hensen
2026-02-02 19:26:22 +01:00
parent 41ab5657dc
commit 7217931316
4 changed files with 90 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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