Skip to content

Commit

Permalink
[#IOPID-1839] tentative: fix other scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
arcogabbo committed May 31, 2024
1 parent 718853a commit c391190
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 1 addition & 6 deletions e2e/scenarios/with-aws-s3/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ export const spidLogStorage = {
accessKeyId: "minioadmin",
secretAccessKey: "minioadmin",
region: "us-east-1",
endpoint: {
hostname: "localhost",
path: "/",
port: 10000,
protocol: "http"
},
endpoint: { url: new URL("http://localhost:10000/") },
forcePathStyle: true
};
2 changes: 1 addition & 1 deletion e2e/scenarios/with-aws-s3/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ services:

storage:
image: minio/minio
command: server --address 0.0.0.0:10000 --console-address 0.0.0.0:10001 /data
command: server --address 0.0.0.0:10000 --console-address 0.0.0.0:10001 /data
ports:
- "10000:10000"
- "10001:10001"
Expand Down
4 changes: 4 additions & 0 deletions e2e/scenarios/with-redis-cluster/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ services:
- redis-node-0-data:/bitnami/redis/data
environment:
- 'REDIS_NODES=redis-cluster redis-node-0 redis-node-1 redis-node-2 redis-node-3'
- 'ALLOW_EMPTY_PASSWORD=yes'

redis-node-1:
image: docker.io/bitnami/redis-cluster:6.2
Expand All @@ -64,6 +65,7 @@ services:
- redis-node-1-data:/bitnami/redis/data
environment:
- 'REDIS_NODES=redis-cluster redis-node-0 redis-node-1 redis-node-2 redis-node-3'
- 'ALLOW_EMPTY_PASSWORD=yes'

redis-node-2:
image: docker.io/bitnami/redis-cluster:6.2
Expand All @@ -75,6 +77,7 @@ services:
- redis-node-2-data:/bitnami/redis/data
environment:
- 'REDIS_NODES=redis-cluster redis-node-0 redis-node-1 redis-node-2 redis-node-3'
- 'ALLOW_EMPTY_PASSWORD=yes'

redis-node-3:
image: docker.io/bitnami/redis-cluster:6.2
Expand All @@ -86,6 +89,7 @@ services:
- redis-node-3-data:/bitnami/redis/data
environment:
- 'REDIS_NODES=redis-cluster redis-node-0 redis-node-1 redis-node-2 redis-node-3'
- 'ALLOW_EMPTY_PASSWORD=yes'

redis-cluster:
image: docker.io/bitnami/redis-cluster:6.2
Expand Down

0 comments on commit c391190

Please sign in to comment.