Skip to content

Commit 4a17709

Browse files
Update README.md
1 parent e9467f1 commit 4a17709

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,47 @@ The Cosmo Tech Cloud Platform API exposes a [REST](https://en.wikipedia.org/wiki
2020

2121
It is written in [Kotlin](https://kotlinlang.org/), makes use of the [Spring Boot framework](https://spring.io/projects/spring-boot), and is built with [Gradle](https://gradle.org/). Note that this project contains a set of service implementations interacting with [Azure Cosmos DB](https://docs.microsoft.com/en-us/azure/cosmos-db/) for data persistence.
2222

23+
## Configuration changes from previous version
24+
25+
### Version 2.0.0
26+
27+
In this version, several functionnalities were added:
28+
- RBAC/ACL functionnality: the possibility to manage rights/permissions for users on Organization/Workspace/Scenario
29+
- TwinCache functionnality: the possibility to cache input dataset in a cache solution
30+
- fine grade customization :
31+
- Image pull policy
32+
- claim used for users email and users roles
33+
- data ingestion (ADX) timeout
34+
35+
You can find the parameters to set in configuration:
36+
37+
```
38+
csm:
39+
platform:
40+
...
41+
images:
42+
...
43+
imagePullPolicy: "IfNotPresent"
44+
...
45+
authorization:
46+
...
47+
mailJwtClaim: upn
48+
rolesJwtClaim: roles
49+
...
50+
dataIngestion:
51+
state:
52+
noDataTimeOutSeconds: 180
53+
...
54+
twincache:
55+
host: <twin cache host>
56+
password: <twin cache password>
57+
port: "6379"
58+
username: default
59+
...
60+
rbac:
61+
enabled: false
62+
```
63+
2364
## Swagger UI
2465

2566
This API is continuously deployed at the following URLs, so you can easily explore it :

0 commit comments

Comments
 (0)