2025-07-11 00:41:13 +10:00
|
|
|
---
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: redis
|
2025-08-04 00:10:32 +10:00
|
|
|
namespace: database
|
2025-07-11 00:41:13 +10:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: redis
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: redis
|
|
|
|
spec:
|
2025-08-04 00:15:39 +10:00
|
|
|
nodeSelector:
|
|
|
|
role: dck
|
2025-07-11 00:41:13 +10:00
|
|
|
containers:
|
|
|
|
- name: redis
|
|
|
|
image: redis:7
|
|
|
|
ports:
|
|
|
|
- containerPort: 6379
|
2025-08-04 00:15:39 +10:00
|
|
|
volumeMounts:
|
|
|
|
- name: redis-data
|
|
|
|
mountPath: /data
|
|
|
|
volumes:
|
|
|
|
- name: redis-data
|
|
|
|
hostPath:
|
|
|
|
path: /dpool/services/redis/data
|
|
|
|
type: DirectoryOrCreate
|
|
|
|
|
2025-07-11 00:41:13 +10:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: redis
|
2025-08-04 00:10:32 +10:00
|
|
|
namespace: database
|
2025-07-11 00:41:13 +10:00
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
app: redis
|
|
|
|
ports:
|
|
|
|
- port: 6379
|
2025-08-04 00:15:39 +10:00
|
|
|
targetPort: 6379
|
2025-07-11 00:41:13 +10:00
|
|
|
|