-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend.json
More file actions
58 lines (54 loc) · 1.75 KB
/
backend.json
File metadata and controls
58 lines (54 loc) · 1.75 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
53
54
55
56
57
58
{
"debug": true,
"insecure_ssl_verify": "false",
"swagger_url": "openapi/swagger-v1.yml",
"namespace": "workbench",
"domain": "kubernetes.docker.internal",
"keycloak": {
"clientId": "workbench-local",
"clientSecret": "",
"hostname": "https://kubernetes.docker.internal/auth",
"realmName": "workbench-dev"
},
"oauth": {
"userinfoUrl": "https://kubernetes.docker.internal/oauth2/userinfo"
},
"mongo": {
"uri": "mongodb://workbench:workbench@workbench-mongodb.workbench.svc.cluster.local:27017/ndslabs?authSource=admin",
"db": "ndslabs"
},
"userapps": {
"singlepod": false,
"service_account_name": "workbench",
"home_storage": {
"enabled": true,
"claim_suffix": "home-data",
"storage_class": "nfs"
},
"shared_storage": {
"enabled": false,
"read_only": true,
"mount_path": "/shared",
"claim_name": "workbench-shared-storage"
},
"ingress": {
"annotations": {
"ingress.kubernetes.io/force-ssl-redirect": "true",
"ingress.kubernetes.io/ssl-redirect": "true",
"nginx.ingress.kubernetes.io/auth-response-headers": "x-auth-request-user, x-auth-request-email, x-auth-request-access-token, x-auth-request-redirect, x-auth-request-preferred-username",
"nginx.ingress.kubernetes.io/auth-url": "https://kubernetes.docker.internal/oauth2/auth",
"nginx.ingress.kubernetes.io/signin-url": "https://kubernetes.docker.internal/oauth2/start?rd=https%3A%2F%2Fkubernetes.docker.internal%2F"
},
"tls": {
"hosts": [
"kubernetes.docker.internal",
"*.kubernetes.docker.internal"
]
},
"class": "traefik",
"enabled": true
}
},
"timeout": 30,
"inactivity_timeout": 480
}