mirror of
https://github.com/wahyd4/home-docker.git
synced 2026-08-09 04:15:52 +10:00
23 lines
319 B
YAML
23 lines
319 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: redis
|
|
namespace: db
|
|
spec:
|
|
ports:
|
|
- port: 6379
|
|
protocol: TCP
|
|
targetPort: 6379
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: redis
|
|
namespace: db
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.1.2
|
|
ports:
|
|
- port: 6379
|
|
protocol: TCP
|