We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4d029 commit 5ad2523Copy full SHA for 5ad2523
charts/synapse/Chart.yaml
@@ -1,3 +1,3 @@
1
---
2
name: synapse
3
-version: 0.20.0
+version: 0.21.0
charts/synapse/templates/synapse-configmap.yaml
@@ -53,6 +53,7 @@ data:
53
block_non_admin_invites: false
54
event_cache_size: "10K"
55
database:
56
+ txn_limit: {{ $.Values.synapse.postgres.txn_limit }}
57
args:
58
cp_max: {{ $.Values.synapse.postgres.cp_max }}
59
cp_min: {{ $.Values.synapse.postgres.cp_min }}
charts/synapse/values.yaml
@@ -104,8 +104,9 @@ synapse:
104
resources: {}
105
presence: true
106
postgres:
107
- cp_max: 10
108
- cp_min: 5
+ cp_max: 100
+ cp_min: 10
109
+ txn_limit: 10000
110
host: "NOT-CONFIGURED4"
111
dbname: "synapse"
112
user: "synapse"
0 commit comments