2025-08-16 05:19:53 +00:00
|
|
|
---
|
2025-08-19 08:36:21 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
2025-08-16 05:19:53 +00:00
|
|
|
metadata:
|
2025-08-19 08:36:21 +00:00
|
|
|
name: redis-deployment
|
2025-08-19 08:36:42 +00:00
|
|
|
namespace: database
|
2025-08-19 08:36:21 +00:00
|
|
|
labels:
|
|
|
|
app: redis
|
2025-08-16 05:19:53 +00:00
|
|
|
spec:
|
2025-08-19 08:36:21 +00:00
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: redis
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: redis
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: redis
|
|
|
|
image: redis:latest
|
|
|
|
ports:
|
|
|
|
- containerPort: 6379
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
2025-08-20 08:35:28 +00:00
|
|
|
name: redis
|
2025-08-19 08:36:42 +00:00
|
|
|
namespace: database
|
2025-08-19 08:36:21 +00:00
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
app: redis
|
|
|
|
ports:
|
|
|
|
- protocol: TCP
|
|
|
|
port: 6379
|
|
|
|
targetPort: 6379
|
|
|
|
|
|
|
|
|