-
Notifications
You must be signed in to change notification settings - Fork 44
Wire server 5.27 #876
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Wire server 5.27 #876
Changes from all commits
d52ff59
83a9488
9c00b6f
49e11ec
b1b25f2
c9efbc7
dc8575b
74b049e
041683e
ebbc1f2
45eadcd
7b4f288
0efc6df
4267280
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Added: update prod and demo example values/secrets for wire-server 5.27, aligning PostgreSQL config, postgresMigration (conversation, teamFeatures), rabbitmq, and mlsPrivateKeys across all services |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,8 @@ brig: | |
| port: "5432" | ||
| user: wire-server | ||
| dbname: wire-server | ||
| postgresqlPool: | ||
| size: 10 # adjust pool size as needed based on expected load and available resources | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment is a cop out. Do we have guidance for this? If so, link!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Guidance pr is still in Review state |
||
| useSES: false | ||
| # Set to false if you want to hand out DynamoDB to store prekeys | ||
| randomPrekeys: true | ||
|
|
@@ -183,10 +185,14 @@ galley: | |
| port: "5432" | ||
| user: wire-server | ||
| dbname: wire-server | ||
| postgresqlPool: | ||
| size: 10 # adjust pool size as needed based on expected load and available resources | ||
| # Explicitly set postgresMigration to cassandra for fresh deployments. | ||
| # This controls whether galley reads conversations from Cassandra or PostgreSQL. | ||
| # This controls whether galley reads conversations/teamFeatures from Cassandra or PostgreSQL. | ||
| postgresMigration: | ||
| conversation: cassandra | ||
| conversationCodes: cassandra | ||
| teamFeatures: cassandra | ||
| enableFederation: false # Enable to use federation | ||
| settings: | ||
| # prefix URI used when inviting users to a conversation by link | ||
|
|
@@ -366,13 +372,15 @@ background-worker: | |
| port: "5432" | ||
| user: wire-server | ||
| dbname: wire-server | ||
| # IMPORTANT: At Chart 5.25.0, the background-worker Helm chart incorrectly defaults | ||
| # postgresMigration.conversation to "postgresql" instead of "cassandra". | ||
| # This MUST be explicitly set to "cassandra" unless you have already migrated | ||
| # conversations to PostgreSQL. Without this override, User Group to Channel sync | ||
| # jobs will silently skip member synchronization. | ||
| postgresqlPool: | ||
| size: 5 # Background worker has fewer connections to DB, so smaller pool size is fine | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oof. inline magic number guidance. bad.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Guidance pr is still in Review state |
||
| postgresMigration: | ||
| conversation: cassandra | ||
| conversationCodes: cassandra | ||
| teamFeatures: cassandra | ||
| migrateConversations: false | ||
| migrateConversationCodes: false | ||
| migrateTeamFeatures: false | ||
| # Enable for federation | ||
| enableFederation: false | ||
| metrics: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.