Skip to content

Commit

Permalink
Release v1.11.0 preparations (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumburovskalina committed Jul 10, 2023
1 parent 5224429 commit a2f510a
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 25 deletions.
5 changes: 2 additions & 3 deletions refinery/docker-compose.tmpl
Expand Up @@ -76,10 +76,8 @@ services:
refinery-entry:
image: kernai/refinery-entry:{ENTRY}
restart: always
environment:
- IS_OS=1
expose:
- 80
- 3000
networks:
- default

Expand Down Expand Up @@ -130,6 +128,7 @@ services:
- S3_SECRET_KEY=JRZtI0SLsEDb3imTy03R
- SQLITE=/sqlite/db.sqlite
# - TYPESENSE_SEARCH=http://typesense-api:80
- SECRET_KEY=default
networks:
- default

Expand Down
36 changes: 33 additions & 3 deletions refinery/oathkeeper/access-rules.yml
Expand Up @@ -46,10 +46,10 @@
id: "kernai:refinery-entry:anonymous"
upstream:
preserve_host: true
url: "http://refinery-entry:80"
url: "http://refinery-entry:3000"
strip_path: /auth/
match:
url: "http://localhost:4455/auth/<{,**}>"
url: "http://localhost:4455<{/auth,/auth/**,/_next/**}>"
methods:
- GET
authenticators:
Expand All @@ -68,7 +68,7 @@
url: "http://refinery-ui:80"
strip_path: /refinery/
match:
url: "http://localhost:4455<{,/*,/refinery,/refinery/**,/sockjs-node/**}>"
url: "http://localhost:4455<{,/,/refinery,/refinery/**,/sockjs-node/**}>"
methods:
- GET
authenticators:
Expand Down Expand Up @@ -106,6 +106,36 @@
config:
to: http://localhost:4455/auth/login

- id: "kernai:refinery-is-managed:public"
upstream:
preserve_host: true
url: "http://refinery-gateway:80"
match:
url: "http://localhost:4455/is_managed"
methods:
- GET
authenticators:
- handler: noop
authorizer:
handler: allow
mutators:
- handler: noop

- id: "kernai:refinery-is-demo:public"
upstream:
preserve_host: true
url: "http://refinery-gateway:80"
match:
url: "http://localhost:4455/is_demo"
methods:
- GET
authenticators:
- handler: noop
authorizer:
handler: allow
mutators:
- handler: noop

-
id: "kernai:object-storage:upload"
upstream:
Expand Down
38 changes: 19 additions & 19 deletions refinery/versions.json
@@ -1,24 +1,24 @@
{
"REFINERY": {
"AC_EXEC_ENV": "v1.10.0",
"AUTHORIZER": "v1.9.0",
"CONFIG": "v1.9.0",
"DOC_OCK": "v1.10.0",
"EMBEDDER": "v1.9.0",
"ENTRY": "v1.8.0",
"GATEWAY": "v1.10.0",
"GATEWAY_PROXY": "v1.9.0",
"ML_EXEC_ENV": "v1.9.0",
"LF_EXEC_ENV": "v1.10.0",
"NEURAL_SEARCH": "v1.10.0",
"REFINERY": "v1.10.1",
"RECORD_IDE_ENV": "v1.10.0",
"TOKENIZER": "v1.10.0",
"UI": "v1.10.0",
"UPDATER": "v1.9.0",
"WEAK_SUPERVISOR": "v1.9.2",
"AC_EXEC_ENV": "v1.11.0",
"AUTHORIZER": "v1.11.0",
"CONFIG": "v1.11.0",
"DOC_OCK": "v1.11.0",
"EMBEDDER": "v1.11.0",
"ENTRY": "v1.11.0",
"GATEWAY": "v1.11.0",
"GATEWAY_PROXY": "v1.11.0",
"ML_EXEC_ENV": "v1.11.0",
"LF_EXEC_ENV": "v1.11.0",
"NEURAL_SEARCH": "v1.11.0",
"REFINERY": "v1.11.0",
"RECORD_IDE_ENV": "v1.11.0",
"TOKENIZER": "v1.11.0",
"UI": "v1.11.0",
"UPDATER": "v1.11.0",
"WEAK_SUPERVISOR": "v1.11.0",
"WEBSOCKET": "v1.9.0",
"ZERO_SHOT": "v1.9.0"
"ZERO_SHOT": "v1.11.0"
},
"THIRD_PARTY": {
"KRATOS": "v0.8.0-alpha.2-sqlite",
Expand All @@ -28,4 +28,4 @@
"POSTGRES": "13",
"QDRANT": "v0.9.1"
}
}
}

0 comments on commit a2f510a

Please sign in to comment.