mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-07-12 09:59:22 +00:00
16 lines
203 B
YAML
16 lines
203 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
name: redis
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: "redis-service"
|
|
port: 6379
|
|
targetPort: 6379
|
|
selector:
|
|
app: redis
|
|
|