File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ pipeline {
1111 OLLAMA_MODEL = 'mistral-small3.2:24b-instruct-2506-q8_0'
1212 MONGODB_URI = 'mongodb://localhost:27017/cognito-eval'
1313 WEAVIATE_HTTP_HOST = 'localhost'
14- WEAVIATE_HTTP_PORT = '8080 '
14+ WEAVIATE_HTTP_PORT = '8081 '
1515 WEAVIATE_GRPC_HOST = 'localhost'
16- WEAVIATE_GRPC_PORT = '50051 '
16+ WEAVIATE_GRPC_PORT = '50052 '
1717 WEAVIATE_SECURE = 'false'
1818 WEAVIATE_API_KEY = ''
1919 }
@@ -34,7 +34,7 @@ pipeline {
3434 timeout 60 bash -c 'until docker exec cognito-eval-mongo mongosh --eval "db.runCommand({ ping: 1 })" > /dev/null 2>&1; do sleep 2; done'
3535
3636 echo "Waiting for Weaviate..."
37- timeout 120 bash -c 'until curl -s http://localhost:8080 /v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
37+ timeout 120 bash -c 'until curl -s http://localhost:8081 /v1/.well-known/ready > /dev/null 2>&1; do sleep 2; done'
3838
3939 echo "Infrastructure ready!"
4040 '''
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ services:
1515 image : docker.io/semitechnologies/weaviate:1.35.0
1616 container_name : cognito-eval-weaviate
1717 ports :
18- - " 8080 :8080"
19- - " 50051 :50051"
18+ - " 8081 :8080"
19+ - " 50052 :50051"
2020 environment :
2121 LOG_LEVEL : " warning"
2222 QUERY_DEFAULTS_LIMIT : 100
You can’t perform that action at this time.
0 commit comments