Skip to content

Commit

Permalink
add(testing): test against enterprise Scylla
Browse files Browse the repository at this point in the history
Also, add timeout on first node setup, as misconfiguration could lead to hanging at this step.
  • Loading branch information
Michal-Leszczynski authored and karol-kokoszka committed Feb 22, 2024
1 parent 2825354 commit 70cab79
Show file tree
Hide file tree
Showing 5 changed files with 700 additions and 1,235 deletions.
2 changes: 0 additions & 2 deletions testing/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
COMPOSE_PROJECT_NAME="scylla_manager"

SCYLLA_IMAGE=scylladb/scylla

SSL_AUTHORITY_CRT=scylla/certs/ca.crt
SSL_CLIENT_KEY=scylla/certs/cl.key
SSL_CLIENT_CRT=scylla/certs/cl.crt
Expand Down
18 changes: 9 additions & 9 deletions testing/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
dc1_node_1:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -22,7 +22,7 @@ services:
second:

dc1_node_2:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -42,7 +42,7 @@ services:
second:

dc1_node_3:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -62,7 +62,7 @@ services:
second:

dc2_node_1:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -82,7 +82,7 @@ services:
second:

dc2_node_2:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -102,7 +102,7 @@ services:
second:

dc2_node_3:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -122,7 +122,7 @@ services:
second:

second_cluster_dc1_node_1:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -142,7 +142,7 @@ services:
second:

second_cluster_dc1_node_2:
image: scylladb/scylla-agent:${SCYLLA_VERSION}
image: scylladb/agent-${SCYLLA_VERSION}
privileged: true
volumes:
- type: bind
Expand All @@ -162,7 +162,7 @@ services:
second:

scylla-manager-db:
image: ${SCYLLA_IMAGE}:${SCYLLA_VERSION}
image: scylladb/${SCYLLA_VERSION}
ports:
- "9042:9042"
- "10000:10000"
Expand Down
Loading

0 comments on commit 70cab79

Please sign in to comment.