-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviz.json
More file actions
52 lines (52 loc) · 1.35 KB
/
viz.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"type": "visualisation",
"ServiceSpec": {
"Name": "visualisation",
"TaskTemplate": {
"ContainerSpec": {
"Image": "ghcr.io/theworldavatar/viz:latest",
"Mounts": [
{
"Type": "volume",
"Source": "vis-files",
"Target": "/twa/public"
}
],
"Env": [
"KEYCLOAK=false",
"REDIS_SOCKET_ADDRESS=<STACK>-redis:6379",
"PROTECTED_PAGES=/page,/otherpage",
"ROLE_PROTECTED_PAGES=/role,/protected,/pages",
"ROLE=viz:protected",
"ASSET_PREFIX=/visualisation",
"FILE_EXPORTER_URL=http://file-exporter:8080",
"REGISTRY_BACKEND_URL=http://vis-backend-agent:8080/vis-backend-agent",
"REGISTRY_TASK_ATTACHMENT_URL=http://registry-attachment:8000"
],
"Secrets": [
{
"SecretName": "mapbox_username",
"File": {
"Name": "/run/secrets/mapbox_username"
}
},
{
"SecretName": "mapbox_api_key",
"File": {
"Name": "/run/secrets/mapbox_api_key"
}
},
{
"SecretName": "redis_password"
}
]
}
}
},
"endpoints": {
"ui": {
"url": "http://localhost:3000",
"externalPath": "/visualisation"
}
}
}