[skip ci] Add document about how to start test cluster (#8986)

Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>
pull/9002/head
Xiaofan 2021-10-01 08:55:21 +08:00 committed by GitHub
parent 2c2b800ff4
commit 7d0b099907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -204,6 +204,26 @@ $ pip install -r requirements.txt
$ pytest --tags=L0 -n auto
```
### Test on local branch
#### on linux
start the cluster on your host machine
```shell
$ ./scripts/start_cluster.sh
```
#### With docker
start the cluster on your host machine
```shell
$ ./build/builder.sh make install // build milvus
$ ./build/build_image.sh // build milvus lastest docker
$ docker images // check if milvus latest image is ready
REPOSITORY TAG IMAGE ID CREATED SIZE
milvusdb/milvus latest 63c62ff7c1b7 52 minutes ago 570MB
$ install with docker compose
```
## GitHub Flow
To check out code to work on, please refer to the [GitHub Flow](https://guides.github.com/introduction/flow/).