Skip to content

Commit ba6ddd3

Browse files
committed
Separate snapshot tests.
Signed-off-by: dblock <[email protected]>
1 parent b4b5931 commit ba6ddd3

File tree

5 files changed

+15
-1
lines changed

5 files changed

+15
-1
lines changed

.github/workflows/test-spec.yml

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
- version: 2.15.0
3131
- version: 2.15.0
3232
tests: plugins/index_state_management
33+
- version: 2.15.0
34+
tests: snapshot
3335
- version: 2.16.0
3436
hub: opensearchstaging
3537
ref: '@sha256:bcd7f5d5d30231f24f266064248cc8d3306574948190f7bf93016dff29acf17e'

tests/default/docker-compose.yml

-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ services:
1010
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-myStrongPassword123!}
1111
- OPENSEARCH_JAVA_OPTS=${OPENSEARCH_JAVA_OPTS}
1212
- discovery.type=single-node
13-
- path.repo=/tmp/opensearch/repo
File renamed without changes.
File renamed without changes.

tests/snapshot/docker-compose.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3'
2+
3+
services:
4+
opensearch-cluster:
5+
image: ${OPENSEARCH_DOCKER_HUB_PROJECT:-opensearchproject}/opensearch:${OPENSEARCH_VERSION:-latest}${OPENSEARCH_DOCKER_REF}
6+
ports:
7+
- 9200:9200
8+
- 9600:9600
9+
environment:
10+
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-myStrongPassword123!}
11+
- OPENSEARCH_JAVA_OPTS=${OPENSEARCH_JAVA_OPTS}
12+
- discovery.type=single-node
13+
- path.repo=/tmp/opensearch/repo

0 commit comments

Comments
 (0)