Add Redis app.

This commit is contained in:
2025-05-18 15:26:14 -07:00
parent 2e03f4c1db
commit 9ec2c6824f
5 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: redis
spec:
selector:
matchLabels:
app: redis
replicas: 1
template:
metadata:
labels:
app: redis
spec:
containers:
- image: redis:alpine
name: redis
ports:
- containerPort: 6379
env:
- name: TZ
value: America/New_York
envFrom:
- configMapRef:
name: config
restartPolicy: Always