Skip to content

Commit

Permalink
chore: modify report style
Browse files Browse the repository at this point in the history
  • Loading branch information
yangbodong22011 committed Dec 9, 2024
1 parent 1aacbb1 commit fdd1e49
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 24 deletions.
10 changes: 2 additions & 8 deletions Terraform/Aliyun/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -296,15 +296,15 @@ echo "https://${var.github_token}:x-oauth-basic@github.com" > ~/.git-credentials
git config --global user.name "${var.user_name}"
git config --global user.email "${var.user_email}"
# 启动Redis Cluster
cd ~
git clone https://github.com/redis/redis.git
cd redis
make -j
cd utils/create-cluster
./create-cluster start
yes yes | ./create-cluster create
echo yes | ./create-cluster create
# 可替换为含有dailyTest分支仓库的url
cd ~
REPO_URL="https://github.com/tair-opensource/resp-compatibility.git"
RETRY_COUNT=0
Expand All @@ -331,9 +331,3 @@ cd resp-compatibility
python3 conn.py
EOF
}


output "ecs_ip_address" {
value = alicloud_instance.my_ecs.private_ip
}

72 changes: 56 additions & 16 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,53 +14,93 @@ SpecificVersion:
# the host, port, password of all the db to be tested
Database:
Redis:
host: 172.16.0.10
host: 127.0.0.1
port: 6379
password:
ssl: false
cluster: false
version: latest
RedisCluster:

DragonflyDB:
host: 127.0.0.1
port: 30001
password:
ssl: false
cluster: true
version: latest

Valkey:
host: 172.16.0.10
port: 6384
port: 6380
password:
ssl: false
cluster: false
version: latest

Kvrocks:
host: 172.16.0.10
host: 127.0.0.1
port: 6381
password:
ssl: false
cluster: false
version: latest

KeyDB:
host: 172.16.0.10
host: 127.0.0.1
port: 6382
password:
ssl: false
cluster: false
version: latest

Pika:
host: 172.17.0.6
port: 9221
host: 127.0.0.1
port: 6383
password:
ssl: false
cluster: false
version: latest

Valkey:
host: 127.0.0.1
port: 6384
password:
ssl: false
cluster: false
version: latest

RedisCluster:
host: 127.0.0.1
port: 30001
password:
ssl: false
cluster: true
version: latest

AliyunRedis:
host:
port:
password:
ssl:
cluster: false
version:

AliyunRedisCluster:
host:
port:
password:
ssl:
cluster: true
version:

AliyunTair:
host:
port:
password:
ssl:
cluster: false
version:

AliyunTairCluster:
host:
port:
password:
ssl:
cluster: true
version:

ElastiCache:
host:
port:
Expand Down

0 comments on commit fdd1e49

Please sign in to comment.