Skip to content

Commit cc8340c

Browse files
committed
fix-ingress-must-be-an-absolute-path
1 parent 4aff43b commit cc8340c

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

charts/synapse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
apiVersion: v2
33
name: synapse
44
description: matrix synapse kubernetes deployment
5-
version: 2.0.0
5+
version: 2.0.1
66
appVersion: 1.149.1

charts/synapse/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ ingress:
428428
- "/_matrix/client/(api/v1|r0|v3|unstable)/login/sso/redirect(/|$)"
429429
# qr code rendezvous loginto main process
430430
# related to MSC4108 https://github.com/matrix-org/matrix-spec-proposals/pull/4108
431-
- "(/_matrix/client/(unstable|v1)/org.matrix.msc4108/rendezvous|/_synapse/client/rendezvous)$"
431+
#- "(/_matrix/client/(unstable|v1)/org.matrix.msc4108/rendezvous|/_synapse/client/rendezvous)$"
432+
# this should fix spec.rules[0].http.paths[2].path: must be an absolute path
433+
- "/_matrix/client/(unstable|v1)/org.matrix.msc4108/rendezvous$"
434+
- "/_synapse/client/rendezvous$"
432435
# federation overrides to main/master process
433436
- "/_matrix/federation/v1/openid/userinfo$"
434437
# send all other traffic to the main/master process, should go last in lb config

0 commit comments

Comments
 (0)