Skip to content

Commit a2f510a

Browse files
Release v1.11.0 preparations (#259)
1 parent 5224429 commit a2f510a

File tree

3 files changed

+54
-25
lines changed

3 files changed

+54
-25
lines changed

refinery/docker-compose.tmpl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,8 @@ services:
7676
refinery-entry:
7777
image: kernai/refinery-entry:{ENTRY}
7878
restart: always
79-
environment:
80-
- IS_OS=1
8179
expose:
82-
- 80
80+
- 3000
8381
networks:
8482
- default
8583

@@ -130,6 +128,7 @@ services:
130128
- S3_SECRET_KEY=JRZtI0SLsEDb3imTy03R
131129
- SQLITE=/sqlite/db.sqlite
132130
# - TYPESENSE_SEARCH=http://typesense-api:80
131+
- SECRET_KEY=default
133132
networks:
134133
- default
135134

refinery/oathkeeper/access-rules.yml

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
id: "kernai:refinery-entry:anonymous"
4747
upstream:
4848
preserve_host: true
49-
url: "http://refinery-entry:80"
49+
url: "http://refinery-entry:3000"
5050
strip_path: /auth/
5151
match:
52-
url: "http://localhost:4455/auth/<{,**}>"
52+
url: "http://localhost:4455<{/auth,/auth/**,/_next/**}>"
5353
methods:
5454
- GET
5555
authenticators:
@@ -68,7 +68,7 @@
6868
url: "http://refinery-ui:80"
6969
strip_path: /refinery/
7070
match:
71-
url: "http://localhost:4455<{,/*,/refinery,/refinery/**,/sockjs-node/**}>"
71+
url: "http://localhost:4455<{,/,/refinery,/refinery/**,/sockjs-node/**}>"
7272
methods:
7373
- GET
7474
authenticators:
@@ -106,6 +106,36 @@
106106
config:
107107
to: http://localhost:4455/auth/login
108108

109+
- id: "kernai:refinery-is-managed:public"
110+
upstream:
111+
preserve_host: true
112+
url: "http://refinery-gateway:80"
113+
match:
114+
url: "http://localhost:4455/is_managed"
115+
methods:
116+
- GET
117+
authenticators:
118+
- handler: noop
119+
authorizer:
120+
handler: allow
121+
mutators:
122+
- handler: noop
123+
124+
- id: "kernai:refinery-is-demo:public"
125+
upstream:
126+
preserve_host: true
127+
url: "http://refinery-gateway:80"
128+
match:
129+
url: "http://localhost:4455/is_demo"
130+
methods:
131+
- GET
132+
authenticators:
133+
- handler: noop
134+
authorizer:
135+
handler: allow
136+
mutators:
137+
- handler: noop
138+
109139
-
110140
id: "kernai:object-storage:upload"
111141
upstream:

refinery/versions.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
22
"REFINERY": {
3-
"AC_EXEC_ENV": "v1.10.0",
4-
"AUTHORIZER": "v1.9.0",
5-
"CONFIG": "v1.9.0",
6-
"DOC_OCK": "v1.10.0",
7-
"EMBEDDER": "v1.9.0",
8-
"ENTRY": "v1.8.0",
9-
"GATEWAY": "v1.10.0",
10-
"GATEWAY_PROXY": "v1.9.0",
11-
"ML_EXEC_ENV": "v1.9.0",
12-
"LF_EXEC_ENV": "v1.10.0",
13-
"NEURAL_SEARCH": "v1.10.0",
14-
"REFINERY": "v1.10.1",
15-
"RECORD_IDE_ENV": "v1.10.0",
16-
"TOKENIZER": "v1.10.0",
17-
"UI": "v1.10.0",
18-
"UPDATER": "v1.9.0",
19-
"WEAK_SUPERVISOR": "v1.9.2",
3+
"AC_EXEC_ENV": "v1.11.0",
4+
"AUTHORIZER": "v1.11.0",
5+
"CONFIG": "v1.11.0",
6+
"DOC_OCK": "v1.11.0",
7+
"EMBEDDER": "v1.11.0",
8+
"ENTRY": "v1.11.0",
9+
"GATEWAY": "v1.11.0",
10+
"GATEWAY_PROXY": "v1.11.0",
11+
"ML_EXEC_ENV": "v1.11.0",
12+
"LF_EXEC_ENV": "v1.11.0",
13+
"NEURAL_SEARCH": "v1.11.0",
14+
"REFINERY": "v1.11.0",
15+
"RECORD_IDE_ENV": "v1.11.0",
16+
"TOKENIZER": "v1.11.0",
17+
"UI": "v1.11.0",
18+
"UPDATER": "v1.11.0",
19+
"WEAK_SUPERVISOR": "v1.11.0",
2020
"WEBSOCKET": "v1.9.0",
21-
"ZERO_SHOT": "v1.9.0"
21+
"ZERO_SHOT": "v1.11.0"
2222
},
2323
"THIRD_PARTY": {
2424
"KRATOS": "v0.8.0-alpha.2-sqlite",
@@ -28,4 +28,4 @@
2828
"POSTGRES": "13",
2929
"QDRANT": "v0.9.1"
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)