-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump mongodb exporter version / Add v7 tests (#224)
- Loading branch information
1 parent
7264208
commit 4acf172
Showing
7 changed files
with
114 additions
and
22,500 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
File renamed without changes.
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,24 @@ | ||
version: '3.8' | ||
services: | ||
e2e_standalone: | ||
container_name: "e2e_standalone" | ||
image: mongo:7.0 | ||
environment: | ||
- MONGO_INITDB_ROOT_USERNAME=root | ||
- MONGO_INITDB_ROOT_PASSWORD=pass12345 | ||
ports: | ||
- "17017:27017" | ||
command: mongod --port 27017 --oplogSize 16 | ||
|
||
e2e_mongo-sa1-setup: | ||
container_name: "e2e_mongo-sa1-setup" | ||
image: mongo:7.0 | ||
depends_on: | ||
- "e2e_standalone" | ||
links: | ||
- e2e_standalone:e2e_standalone | ||
volumes: | ||
- ./scripts:/scripts | ||
environment: | ||
- MONGO1=e2e_standalone | ||
entrypoint: [ "/scripts/setup-standalone.sh" ] |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.