Skip to content

Commit ebad76d

Browse files
authored
Merge pull request #67 from weaviate/add-support-for-mmt
Add support for multi tenancy endpoints
2 parents fbf3c47 + 9d48e0e commit ebad76d

38 files changed

+1312
-92
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = {
2323
'comma-dangle': 'off',
2424
'comma-spacing': 'off',
2525
'comma-style': ['error', 'last'],
26-
complexity: 'error',
26+
complexity: ['error', 25],
2727
'computed-property-spacing': ['error', 'never'],
2828
'consistent-return': 'off',
2929
'consistent-this': 'off',

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
npm test
5050
npm run build
51-
- name: "Stop weavaite"
51+
- name: "Stop Weaviate"
5252
run: ci/stop_dependencies.sh
5353

5454
publish:

ci/compose.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
2+
3+
set -eou pipefail
24

35
function ls_compose {
46
ls ci | grep 'docker-compose'

ci/docker-compose-azure-cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.19.2
13+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
1414
ports:
1515
- 8081:8081
1616
restart: on-failure:0

ci/docker-compose-cluster.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.4'
33
services:
44
weaviate-node-1:
5-
image: semitechnologies/weaviate:1.19.2
5+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
66
restart: on-failure:0
77
ports:
88
- "8087:8080"
@@ -19,16 +19,16 @@ services:
1919
weaviate-node-2:
2020
init: true
2121
command:
22-
- --host
23-
- 0.0.0.0
24-
- --port
25-
- '8080'
26-
- --scheme
27-
- http
28-
image: semitechnologies/weaviate:1.19.2
22+
- --host
23+
- 0.0.0.0
24+
- --port
25+
- '8080'
26+
- --scheme
27+
- http
28+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
2929
ports:
30-
- 8088:8080
31-
- 6061:6060
30+
- 8088:8080
31+
- 6061:6060
3232
restart: on-failure:0
3333
environment:
3434
CONTEXTIONARY_URL: contextionary:9999

ci/docker-compose-okta-cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.19.2
13+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
1414
ports:
1515
- 8082:8082
1616
restart: on-failure:0

ci/docker-compose-okta-users.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.19.2
13+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
1414
ports:
1515
- 8083:8083
1616
restart: on-failure:0

ci/docker-compose-openai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- '8086'
1010
- --scheme
1111
- http
12-
image: semitechnologies/weaviate:1.19.2
12+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
1313
ports:
1414
- 8086:8086
1515
restart: on-failure:0

ci/docker-compose-wcs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.19.2
13+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
1414
ports:
1515
- 8085:8085
1616
restart: on-failure:0

ci/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.4'
33
services:
44
weaviate:
5-
image: semitechnologies/weaviate:1.19.2
5+
image: semitechnologies/weaviate:preview-fix-validation-of-multi-tenancy-configuration-0529e8e
66
restart: on-failure:0
77
ports:
88
- "8080:8080"

0 commit comments

Comments
 (0)