redis fixes

This commit is contained in:
tim
2024-11-01 13:17:13 -04:00
parent 66aada0478
commit 5b39d5ccc7
3 changed files with 15 additions and 30 deletions

Submodule backend updated: 3b2c58671b...bc6a196bfa

View File

@@ -1,10 +1,11 @@
apiVersion: apps/v1
kind: Deployment
kind: StatefulSet
metadata:
name: redis
labels:
app: redis
spec:
serviceName: "redis"
replicas: 1
selector:
matchLabels:
@@ -15,30 +16,14 @@ spec:
app: redis
spec:
containers:
- name: redis
image: docker.dragonflydb.io/dragonflydb/dragonfly:latest
ports:
- containerPort: 6379
resources:
limits:
cpu: '1'
memory: 2Gi
requests:
cpu: 100m
memory: 500Mi
---
apiVersion: v1
kind: Service
metadata:
name: redis
labels:
app: redis
spec:
selector:
app: redis
ports:
- protocol: TCP
port: 6379
name: redis
- name: redis
image: docker.dragonflydb.io/dragonflydb/dragonfly:latest
ports:
- containerPort: 6379
resources:
limits:
cpu: '1'
memory: 2Gi
requests:
cpu: 100m
memory: 500Mi

2
web

Submodule web updated: a7a1628f3c...61101fcf0a