12 lines
266 B
YAML
12 lines
266 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: redis-service
|
|
spec:
|
|
selector:
|
|
app: redis-app # This must match the pod label in StatefulSet.
|
|
ports:
|
|
- name: redis-port
|
|
port: 6379 # External port for Redis.
|
|
targetPort: 6379 # Internal container port.
|