Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor aggregate to use gRPC #259

Merged
merged 11 commits into from
Feb 7, 2025
16 changes: 9 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ on:

env:
WEAVIATE_124: 1.24.26
WEAVIATE_125: 1.25.28
WEAVIATE_126: 1.26.13
WEAVIATE_127: 1.27.9
WEAVIATE_128: 1.28.2
WEAVIATE_125: 1.25.30
WEAVIATE_126: 1.26.14
WEAVIATE_127: 1.27.11
WEAVIATE_128: 1.28.4
WEAVIATE_129: 1.29.0-rc.0

jobs:
checks:
Expand Down Expand Up @@ -39,9 +40,10 @@ jobs:
{ node: "22.x", weaviate: $WEAVIATE_125},
{ node: "22.x", weaviate: $WEAVIATE_126},
{ node: "22.x", weaviate: $WEAVIATE_127},
{ node: "18.x", weaviate: $WEAVIATE_128},
{ node: "20.x", weaviate: $WEAVIATE_128},
{ node: "22.x", weaviate: $WEAVIATE_128}
{ node: "22.x", weaviate: $WEAVIATE_128},
{ node: "18.x", weaviate: $WEAVIATE_129},
{ node: "20.x", weaviate: $WEAVIATE_129},
{ node: "22.x", weaviate: $WEAVIATE_129}
]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion ci/compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ function compose_down_all {
}

function all_weaviate_ports {
echo "8078 8080 8081 8082 8083 8085 8086 8087 8088 8089 8090"
echo "8078 8080 8081 8082 8083 8085 8086 8087 8088 8089 8090 8091"
}
31 changes: 31 additions & 0 deletions ci/docker-compose-rbac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
version: '3.4'
services:
weaviate-rbac:
command:
- --host
- 0.0.0.0
- --port
- '8085'
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
ports:
- 8091:8085
- 50062:50051
restart: on-failure:0
environment:
ENABLE_MODULES: "generative-dummy,reranker-dummy"
PERSISTENCE_DATA_PATH: "./data-weaviate-0"
CLUSTER_IN_LOCALHOST: "true"
CLUSTER_GOSSIP_BIND_PORT: "7100"
CLUSTER_DATA_BIND_PORT: "7101"
RAFT_BOOTSTRAP_EXPECT: "1"
AUTHENTICATION_APIKEY_ENABLED: "true"
AUTHENTICATION_APIKEY_ALLOWED_KEYS: 'viewer-key,editor-key,admin-key,custom-key'
AUTHENTICATION_APIKEY_USERS: 'viewer-user,editor-user,admin-user,custom-user'
AUTHORIZATION_RBAC_ENABLED: "true"
AUTHORIZATION_ADMIN_USERS: "admin-user"
AUTHORIZATION_VIEWER_USERS: "viewer-user"
...
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"format": "prettier --write --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**'",
"format:check": "prettier --check --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**'",
"format:dist": "prettier --write --no-error-on-unmatched-pattern '**/dist/**/*.{ts,js}'",
"schema": "./tools/refresh_schema.sh",
"protos": "./tools/refresh_protos.sh",
"refresh-schema": "./tools/refresh_schema.sh",
"refresh-protos": "./tools/refresh_protos.sh",
"docs": "typedoc --plugin typedoc-plugin-extras --favicon public/favicon.ico --out docs/ src/"
},
"repository": {
Expand Down
Loading