-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read build args for metricbeat system tests from file (#14520)
A new file is being added to add information about the supported versions of a service, use this file to obtain the build args for docker images needed by metricbeat system tests. Python tests can now be decorated using the parameterized library instead of manually copying them. MySQL test files and docker compose definition has been moved to its own directory.
- Loading branch information
Showing
9 changed files
with
88 additions
and
69 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
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,3 @@ | ||
variants: | ||
- APACHE_VERSION: 2.4.12 | ||
- APACHE_VERSION: 2.4.20 |
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,15 @@ | ||
variants: | ||
- MYSQL_VARIANT: mysql | ||
MYSQL_VERSION: 5.7.12 | ||
- MYSQL_VARIANT: mysql | ||
MYSQL_VERSION: 8.0.13 | ||
- MYSQL_VARIANT: percona | ||
MYSQL_VERSION: 5.7.24 | ||
- MYSQL_VARIANT: percona | ||
MYSQL_VERSION: 8.0.13-4 | ||
- MYSQL_VARIANT: mariadb | ||
MYSQL_VERSION: 10.2.23 | ||
- MYSQL_VARIANT: mariadb | ||
MYSQL_VERSION: 10.3.14 | ||
- MYSQL_VARIANT: mariadb | ||
MYSQL_VERSION: 10.4.4 |
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,11 @@ | ||
version: '2.3' | ||
|
||
services: | ||
mysql: | ||
image: docker.elastic.co/observability-ci/beats-integration-mysql:${MYSQL_VARIANT:-mysql}-${MYSQL_VERSION:-5.7.12}-1 | ||
build: | ||
context: ./_meta | ||
args: | ||
MYSQL_IMAGE: ${MYSQL_VARIANT:-mysql}:${MYSQL_VERSION:-5.7.12} | ||
ports: | ||
- 3306 |
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