charts/charts-wip/matrix-synapse/templates/NOTES.txt

36 lines
1.4 KiB
Text
Raw Normal View History

2020-08-08 22:15:10 +00:00
** Note, this chart may take a while to finish setup, please be patient **
2020-08-07 21:23:34 +00:00
{{- if not .Values.ingress.enabled }}
Synapse has been installed without an ingress, you will need to manage
accesses to the services yourself.
{{- else }}
2020-08-08 22:15:10 +00:00
Your Synapse install is now starting, you should soon be able to access it on
the following URL(s);
2020-08-07 21:23:34 +00:00
{{- range (concat .Values.ingress.hosts (list .Values.config.serverName)) }}
{{- if $.Values.ingress.tls }}
https://{{ . }}
{{- else }}
http://{{ . }}
{{- end }}
{{- end }}
2020-08-08 22:15:10 +00:00
{{ if not .Values.wellknown.enabled }}
Note that for federation to work you will need to either add an SRV record or
set up a /.well-known/matrix/server response.
Refer to https://github.com/matrix-org/synapse/blob/master/docs/federate.md
for more information.
2020-08-07 21:23:34 +00:00
{{- end }}
2020-08-08 22:15:10 +00:00
{{- if .Values.config.enableRegistration }}
You should be able to connect to your Synapse install with any compatible
Matrix client - and register an account - as soon as final setup is done.
You can also create an admin user with the following command;
{{- else }}
You can create a user in your new Synapse install by running the following
command;
{{- end }}
kubectl exec --namespace {{ .Release.Namespace }} {{ template "matrix-synapse" . }} -- register_new_matrix_user -c /synapse/config/homeserver.yaml -c /synapse/config/conf.d/secrets.yaml -u USERNAME -p PASSWORD --admin http://localhost:8008
You can also specify --no-admin to create a non-admin user.