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:
|
|
|
|
containers:
|
|
|
|
- name: redis
|
|
|
|
image: redis:7
|
|
|
|
ports:
|
|
|
|
- containerPort: 6379
|
|
|
|
---
|
|
|
|
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
|
|
|
|
|