Skip to content

Commit

Permalink
chore: added OS test flows
Browse files Browse the repository at this point in the history
  • Loading branch information
igpetrov committed Aug 15, 2024
1 parent f510c62 commit 84d3734
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test-core-opensearch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Test docker-compose-core.opensearch.yaml"
on:
push:
branches:
- "**"
jobs:
test_core:
uses: ./.github/workflows/template-deploy.yaml
secrets: inherit
with:
compose_args: "-f docker-compose-core.opensearch.yaml"
run_e2e_tests: false
12 changes: 12 additions & 0 deletions .github/workflows/test-default.opensearch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Test docker-compose.opensearch.yaml"
on:
push:
branches:
- "**"
jobs:
test_docker_compose_yaml:
uses: ./.github/workflows/template-deploy.yaml
secrets: inherit
with:
compose_args: "-f docker-compose.opensearch.yaml"
run_e2e_tests: false
12 changes: 12 additions & 0 deletions .github/workflows/test-modeler.opensearch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Test docker-compose-web-modeler.yaml with OpenSearch"
on:
push:
branches:
- "**"
jobs:
test_modeler_yaml:
uses: ./.github/workflows/template-deploy.yaml
secrets: inherit
with:
compose_args: "-f docker-compose.opensearch.yaml -f docker-compose-web-modeler.yaml"
run_e2e_tests: true
4 changes: 2 additions & 2 deletions docker-compose-core.opensearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
- opensearch

operate: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#operate
image: camunda/operate:${CAMUNDA_PLATFORM_VERSION}
image: camunda/operate:${CAMUNDA_OPERATE_VERSION}
container_name: operate
ports:
- "8081:8080"
Expand All @@ -61,7 +61,7 @@ services:
- opensearch

tasklist: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#tasklist
image: camunda/tasklist:${CAMUNDA_PLATFORM_VERSION}
image: camunda/tasklist:${CAMUNDA_TASKLIST_VERSION}
container_name: tasklist
ports:
- "8082:8080"
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.opensearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
- identity

operate: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#operate
image: camunda/operate:${CAMUNDA_PLATFORM_VERSION}
image: camunda/operate:${CAMUNDA_OPERATE_VERSION}
container_name: operate
ports:
- "8081:8080"
Expand Down Expand Up @@ -98,7 +98,7 @@ services:
- opensearch

tasklist: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#tasklist
image: camunda/tasklist:${CAMUNDA_PLATFORM_VERSION}
image: camunda/tasklist:${CAMUNDA_TASKLIST_VERSION}
container_name: tasklist
ports:
- "8082:8080"
Expand Down Expand Up @@ -223,7 +223,7 @@ services:

identity: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#identity
container_name: identity
image: camunda/identity:${CAMUNDA_PLATFORM_VERSION}
image: camunda/identity:${CAMUNDA_IDENTITY_VERSION}
ports:
- "8084:8084"
environment: # https://docs.camunda.io/docs/self-managed/identity/deployment/configuration-variables/
Expand Down

0 comments on commit 84d3734

Please sign in to comment.