matrix-synapse: Add option to modify wellknown service type
This commit is contained in:
parent
46dc49b0ca
commit
8f33979f65
2 changed files with 6 additions and 1 deletions
|
@ -9,7 +9,7 @@ metadata:
|
|||
{{- include "matrix-synapse.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: well-known
|
||||
spec:
|
||||
type: ClusterIP
|
||||
type: {{ .Values.wellknown.service.type | default "ClusterIP" }}
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: http
|
||||
|
|
|
@ -606,6 +606,11 @@ wellknown:
|
|||
# m.homeserver:
|
||||
# base_url: https://matrix.example.com
|
||||
|
||||
## Configuration for the wellknown service.
|
||||
##
|
||||
service:
|
||||
type: ClusterIP
|
||||
|
||||
## Extra data objects to serve under .well-known/matrix/<data>
|
||||
## Dictionaries will be JSON converted, plain strings will be served as they are
|
||||
##
|
||||
|
|
Loading…
Reference in a new issue