forked from elastic/e2e-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: instrument Helm charts test suite (elastic#858) (elastic#860)
* chore: add a span for waiting for elasticsearch * chore: add a span for waiting for Kibana * chore: add spans for Running/Stopping docker compose * chore: log file name when loading a docker image from TAR * chore: extract init APM dependencies to a steps package * fix: enrich log for local APM services * chore: enrich log for starting compose files * fix: consistent span type for compose services * chore: do not initialise helm test suite with Go init * chore: pass context to shell.Execute * feat: instrument helm charts test suite * fix: use passed context
- Loading branch information
1 parent
c12a1ce
commit c2a332b
Showing
14 changed files
with
325 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: '2.4' | ||
services: | ||
elasticsearch: | ||
environment: | ||
- bootstrap.memory_lock=true | ||
- discovery.type=single-node | ||
- ES_JAVA_OPTS=-Xms512m -Xmx512m | ||
- xpack.security.enabled=false | ||
- xpack.monitoring.collection.enabled=true | ||
- ELASTIC_USERNAME=elastic | ||
- ELASTIC_PASSWORD=changeme | ||
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.0.0-SNAPSHOT}" | ||
ports: | ||
- "9200:9200" |
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
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.