-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MM-61166] Cherrypick to
release-0.29
(#889)
* [MM-61166] Ensure full validation of Calls post props (#885) * Ensure full validation of Calls post props * [MM-61228] Surface transcriptions in call post (#886) * Surface transcriptions in call post * Add proper job metadata validation * [MM-61298] Fix e2e pipeline (#888) * Fix e2e pipeline * We don't need ES * Fix docker login step (#881) * Fix docker login step * Update .github/workflows/e2e.yml Co-authored-by: Mario Vitale <[email protected]> --------- Co-authored-by: Mario Vitale <[email protected]> * Fix e2e pipeline flakyness (#867) --------- Co-authored-by: Mario Vitale <[email protected]>
- Loading branch information
1 parent
eb9c42a
commit fefebc6
Showing
9 changed files
with
229 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
version: '2.4' | ||
services: | ||
postgres: | ||
image: "postgres:11" | ||
restart: always | ||
tmpfs: /var/lib/postgresql/data | ||
networks: | ||
default: | ||
aliases: | ||
- postgres | ||
environment: | ||
POSTGRES_USER: mmuser | ||
POSTGRES_PASSWORD: mostest | ||
POSTGRES_DB: mattermost_test | ||
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf' | ||
volumes: | ||
- "./postgres.conf:/etc/postgresql/postgresql.conf" | ||
healthcheck: | ||
test: [ "CMD", "pg_isready", "-h", "localhost" ] | ||
interval: 5s | ||
timeout: 10s | ||
retries: 3 | ||
|
||
start_dependencies: | ||
image: mattermost/mattermost-wait-for-dep:latest | ||
depends_on: | ||
- postgres | ||
command: postgres:5432 | ||
networks: | ||
default: | ||
|
||
networks: | ||
default: | ||
name: ${DOCKER_NETWORK} | ||
external: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
max_connections = 300 | ||
listen_addresses = '*' | ||
fsync = off | ||
full_page_writes = off | ||
default_text_search_config = 'pg_catalog.english' | ||
commit_delay=1000 | ||
logging_collector=off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.