Files
boc/vims-backend/k8s/redis.yaml
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

41 lines
684 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: vims-redis
namespace: vims
spec:
replicas: 1
selector:
matchLabels:
app: vims-redis
template:
metadata:
labels:
app: vims-redis
spec:
containers:
- name: redis
image: redis:7-alpine
ports:
- containerPort: 6379
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "256Mi"
cpu: "200m"
---
apiVersion: v1
kind: Service
metadata:
name: vims-redis
namespace: vims
spec:
selector:
app: vims-redis
ports:
- port: 6379
targetPort: 6379
type: ClusterIP