This commit is contained in:
admin
2025-12-22 08:24:52 +01:00
parent 4b6f071349
commit d623200d5d
50 changed files with 3941 additions and 147 deletions

42
lp/matrix/redis.yaml Executable file
View File

@@ -0,0 +1,42 @@
# ===========================
# Redis Deployment
# ===========================
apiVersion: apps/v1
kind: Deployment
metadata:
name: redis
namespace: matrix
spec:
replicas: 1
selector:
matchLabels:
app: redis
template:
metadata:
labels:
app: redis
spec:
containers:
- name: redis
image: redis:7-alpine
ports:
- containerPort: 6379
---
# ===========================
# Redis Service
# ===========================
apiVersion: v1
kind: Service
metadata:
name: redis
namespace: matrix
spec:
selector:
app: redis
ports:
- port: 6379
targetPort: 6379