Project

General

Profile

The ungleich Matrix infrastructure » History » Version 23

Nico Schottelius, 03/07/2025 07:26 AM

1 1 Timothée Floure
h1. The ungleich Matrix infrastructure
2
3 16 Jin-Guk Kwon
{{toc}}
4
5 14 Timothée Floure
*%{color:red}This document concerns the infrastructure side of our MaaS offer and is intended for ungleich staff. See [[Ungleich Matrix-as-a-Service (MaaS)]] page for end-user/customer documentation. Common operations can be found on: [[https://redmine.ungleich.ch/projects/open-infrastructure/wiki/Common_operations_on_X-as-a-Service]].%*
6 1 Timothée Floure
7
h2. Status
8
9 10 Timothée Floure
This document is *A DRAFT*. This service is not in production. Ask @fnux for details.
10 2 Timothée Floure
11 4 Timothée Floure
h2. Environment
12 2 Timothée Floure
13
Our Matrix deployments make use of the "Synapse (reference) Matrix homeserver":https://github.com/matrix-org/synapse/ and "Riot web client":https://about.riot.im/. We use Debian buster as base Operating system, leveraging the "matrix-synapse package from the buster-backports repository":https://packages.debian.org/buster-backports/matrix-synapse. The riot client (= static files) is directly fetched from "upstream releases on github":https://github.com/vector-im/riot-web/releases.
14
15 5 Timothée Floure
The matrix deployments run on ipv6only VMs, HTTP(S) traffic - including federation - being proxy by the [[How to use the IPv4-to-IPv6-Proxy|ungleich v4-to-v6 proxy]]. Federation is delegated using a @/.well-known/@ URI as described in [[Ungleich Matrix-as-a-Service (MaaS)|the customer FAQ]].
16 2 Timothée Floure
17 6 Timothée Floure
!maas.jpg!
18
19 2 Timothée Floure
h2. Tooling
20
21
The whole MaaS setup is defined in the *manifest/matrix-as-a-service* of *dot-cdist* file, which wraps the *__ungleich_matrix* type. This type leverages:
22
23
* *__matrix_synapse*
24
* *__matrix_riot*
25
* *__ungleich_nginx_static_type*
26
* *__postgres_role* and *__postgres_database* from upstream cdist.
27
28 8 Timothée Floure
The "matterbridge":https://github.com/42wim/matterbridge application service can be deployed with the *__matterbridge* type.
29
30 7 Timothée Floure
*Matrix Federation Tester: https://federationtester.matrix.org/*
31
32 12 Timothée Floure
h2. Synapse Admin UI
33
34 23 Nico Schottelius
* Available on: https://synapse-admin.k8s.ungleich.ch/#/login
35
** Old URL https://admin.matrix.ungleich.cloud to be retired in 2025.
36 12 Timothée Floure
* Leverages https://github.com/Awesome-Technologies/synapse-admin/
37
* Static deployment hence hosted on staticweb.
38
39
* Allows manual admin management of users and rooms.
40 13 Timothée Floure
* Use direct address of homeserver for login: @https://XXXX.matrix.ungleich.cloud@
41 12 Timothée Floure
42 4 Timothée Floure
h2. Monitoring
43 1 Timothée Floure
44 15 Timothée Floure
Autodiscovered from consul in monitoring LAN.
45 14 Timothée Floure
46 4 Timothée Floure
h2. Ungleich Deployments
47 2 Timothée Floure
48 4 Timothée Floure
We maintain our own deployments alongside the customer MaaS, both for our own usage and for testing.
49
50 2 Timothée Floure
h3. matrix-staging.ungleich.ch
51
52 4 Timothée Floure
Staging instance used to tests the deployment pipeline and Matrix updates.
53 2 Timothée Floure
54
h3. matrix.ungleich.ch
55
56 9 Timothée Floure
Production instance for ungleich. Some rooms are bridged to the "chat.ungleich.ch":https://chat.ungleich.ch mattermost instance. The bridge makes use of the @#matterbridge:ungleich.ch@ local matrix user (i.e. not from LDAP) and @matterbridge@ mattermost user (linked to matterbridge AT ungleich ch).
57 11 Timothée Floure
58
h2. Customer Deployments
59
60
That's too sensitive to be public: "this way":https://redmine.ungleich.ch/projects/datacenterlight/wiki/Matrix_customer_deployments !
61 10 Timothée Floure
  
62 1 Timothée Floure
h2. Shared TURN server
63 10 Timothée Floure
64 14 Timothée Floure
Coturn is running at matrix-turn.ungleich.ch. See @matrix-as-a-service@ manifest in dot-cdist for details.
65 16 Jin-Guk Kwon
66
h2. create mass users on matrix host
67
68
- info.txt
69
70
<pre>
71 17 Jin-Guk Kwon
FirstName LastName Email user_id1 pw1
72
FirstName LastName Email user_id2 pw2
73
FirstName LastName Email user_id3 pw3
74 16 Jin-Guk Kwon
</pre>
75
76
- creating user shall script
77 1 Timothée Floure
78
<pre>
79 17 Jin-Guk Kwon
while read A B C D E
80 1 Timothée Floure
do
81 17 Jin-Guk Kwon
  pw=$E
82
  name=$A" "$B
83
  ad=$C
84
  id="@"$D
85
  data='{"password":"'${pw}'", "displayname": "'${name}'", "threepids": [ { "medium": "email", "address": "'${ad}'" }], "admin": false, "deactivated": false, "avatar_url": null }'
86
  h='Authorization: Bearer <AccessToken>'
87
  curl -v -X PUT -H "$h" -d "$data" http://localhost:8008/_synapse/admin/v2/users/$id:politikergespraeche.germanzero.org
88
  sleep 2
89 16 Jin-Guk Kwon
done < info.txt
90
</pre>
91
92
h2. invite mass users on matrix host
93
94
- info.txt
95
96
<pre>
97 18 Jin-Guk Kwon
FirstName LastName Email user_id1 pw1
98
FirstName LastName Email user_id2 pw2
99
FirstName LastName Email user_id3 pw3
100 16 Jin-Guk Kwon
</pre>
101
102
- get user token
103
104 18 Jin-Guk Kwon
--> user : admin room user : to invite user, admin must be in room.
105 16 Jin-Guk Kwon
106
<pre>
107
curl -XPOST -d '{"type":"m.login.password", "user":"[user_id]", "password":"[user_password]"}' "http://localhost:8008/_matrix/client/r0/login"
108
</pre>
109
110
- inviting user script
111
112
<pre>
113
matrixserver="testbr.lab.ungleich.ch"
114
115
generate_post_data()
116
{
117
  cat <<EOF
118
{
119 18 Jin-Guk Kwon
  "user_id":"@$D:$matrixserver" 
120 1 Timothée Floure
}
121
EOF
122
}
123
124 20 Jin-Guk Kwon
roomID=( 'roomID1 wihtout !' 'roomID2 wihtout !'  )
125 18 Jin-Guk Kwon
errcode="M_LIMIT_EXCEEDED" 
126
for rm_id in ${roomID[*]}
127 1 Timothée Floure
do
128 18 Jin-Guk Kwon
   while read A B C D E
129
   do
130
      echo $rm_id
131
      res2="" 
132
      res=$(curl -XPOST -d "$(generate_post_data)" "http://localhost:8008/_matrix/client/r0/rooms/%21$rm_id%3Apolitikergespraeche.germanzero.org/invite?access_token=<ACCESS_TOKEN>")
133
      echo $res
134 19 Jin-Guk Kwon
      #avoid error { "errcode": "M_LIMIT_EXCEEDED", "error": "Too Many Requests", "retry_after_ms": 2895 } 
135 18 Jin-Guk Kwon
      if [[ $res =~ $errcode ]];then
136
        sleep 5
137
        res2=$(curl -XPOST -d "$(generate_post_data)" "http://localhost:8008/_matrix/client/r0/rooms/%21$rm_id%3Apolitikergespraeche.germanzero.org/invite?access_token=<ACCESS_TOKEN>")
138
      fi
139
140
      if [[ $res2 =~ $errcode ]];then
141
        echo "===error===" 
142
        echo $res2
143
        exit 1
144
      fi
145
      sleep 1
146
    done < info.txt
147
done
148 1 Timothée Floure
</pre>
149 21 Timothée Floure
150 22 Timothée Floure
h2. Admin interface at admin.matrix.ungleich.cloud
151 21 Timothée Floure
152
It's based on synapse-admin:"https://github.com/Awesome-Technologies/synapse-admin" and is just a static JS app. It's deployed on staticweb.ungleich.ch.
153
154
h3. Update procedure
155
156
<pre>
157
# Clone sources
158
git clone https://github.com/Awesome-Technologies/synapse-admin.git
159
160
# Checkout latest tag
161
git checkout tags/x.y.z
162
163
# Fetch dependencies
164
yarn install
165
166
# Generate static files
167
yarn build
168
169
# Then: copy over content of build/ to staticweb
170
</pre>