Skip to content

Commit

Permalink
Smoketest and smoketest_event_replay envs: Add correct mysql connecti…
Browse files Browse the repository at this point in the history
…on parameters for usage in docker
  • Loading branch information
quartje committed Dec 20, 2023
1 parent 3b63939 commit 35bc9d2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 14 deletions.
15 changes: 9 additions & 6 deletions config/packages/smoketest/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ doctrine:
connections:
middleware:
dbname: middleware_test
host: localhost
password: password
user: root
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user
gateway:
dbname: gateway_test
host: localhost
password: password
user: root
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user
deploy:
dbname: middleware_test
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user
21 changes: 13 additions & 8 deletions config/packages/smoketest_event_replay/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ doctrine:
default_connection: middleware
connections:
middleware:
dbname: "%database_middleware_name%_test"
host: localhost
password: password
user: root
dbname: middleware_test
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user
gateway:
dbname: "%database_gateway_name%_test"
host: localhost
password: password
user: root
dbname: gateway_test
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user
deploy:
dbname: middleware_test
host: mariadb
password: mw_deploy_secret
user: mw_deploy_user

0 comments on commit 35bc9d2

Please sign in to comment.