-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfigMock.js
51 lines (50 loc) · 1.44 KB
/
configMock.js
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
import constants from "../src/constants";
export default {
intercom: {
appId: "appId",
enabled: true,
companyId: "companyId",
companyName: "companyName",
},
sessions: {
poll_interval_ms: 5000,
},
admin: {
groups: "test",
group_attribute_name: "entitlement",
},
analysis: { supportUser: { user: "support_user", source_id: "ldap" } },
irods: {
home_path: "/iplant/home",
trash_path: "/iplant/trash/home/de-irods",
},
tools: {
admin: {
max_cpu_limit: 48,
max_memory_limit: 244 * constants.ONE_GiB,
max_disk_limit: 1024 * constants.ONE_GiB,
},
private: {
max_cpu_limit: 8,
max_memory_limit: 16 * constants.ONE_GiB,
max_disk_limit: 512 * constants.ONE_GiB,
},
},
vice: {
initContainerName: "input-files-init",
inputFilesContainerName: "input-files",
viceProxyContainerName: "vice-proxy",
analysisContainerName: "analysis",
deploymentTimeoutMs: 15000,
defaultImage: "discoenv/cas-proxy",
defaultName: "cas-proxy",
defaultCasUrl: "https://olson.cyverse.org/cas",
defaultCasValidate: "validate",
},
subscriptions: {
checkout_url:
"https://cyverse-subscription-sandbox.phoenixbioinformatics.org",
enforce: true,
},
elasticEnabled: true,
};