19 lines
343 B
YAML
19 lines
343 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: matrix-synapse
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: http
|
|
port: {{ .port }}
|
|
targetPort: {{ .port }}
|
|
protocol: TCP
|
|
- name: federation
|
|
port: {{ .federationPort }}
|
|
targetPort: {{ .federationPort }}
|
|
protocol: TCP
|
|
selector:
|
|
app: matrix-synapse
|