Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Start compose
run: docker-compose up --build --exit-code-from quest
run: docker-compose up --build --exit-code-from quest-load
- name: Stop compose
if: always()
run: docker-compose down
23 changes: 21 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,34 @@ services:
delay: 20s
max_attempts: 3

quest:
quest-smoke:
image: ghcr.io/parseablehq/quest:main
command: ["smoke", "http://parseable:8000", "parseableadmin", "parseableadmin"]
networks:
- parseable-internal
depends_on:
- parseable
parseable:
condition: service_started
deploy:
restart_policy:
condition: on-failure
delay: 20s
max_attempts: 3

quest-load:
image: ghcr.io/parseablehq/quest:main
command: ["load", "http://parseable:8000", "parseableadmin", "parseableadmin", "20"]
networks:
- parseable-internal
depends_on:
parseable:
condition: service_started
quest-smoke:
condition: service_started
deploy:
restart_policy:
condition: on-failure
delay: 20s
max_attempts: 3