apps(rallly): Added Rallly to deployment

This commit is contained in:
2025-06-06 11:18:09 +02:00
parent 007a182644
commit 98bc752341
4 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: rallly
labels:
app.kubernetes.io/name: rallly
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: rallly
template:
metadata:
labels:
app.kubernetes.io/name: rallly
spec:
containers:
- image: lukevella/rallly
name: rallly
envFrom:
- secretRef:
name: rallly-config
ports:
- containerPort: 3000
protocol: TCP