-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.example.json
93 lines (93 loc) · 2.63 KB
/
config.example.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"environment": "staging",
"region": "ORD",
"url_root": "http://127.0.0.1:9000",
"cloudServersOpenStack": "cloudServersOpenStack",
"cloudLoadBalancers": "cloudLoadBalancers",
"cloudOrchestration": "cloudOrchestration",
"rackconnect": "rackconnect",
"cassandra": {
"seed_hosts": ["tcp:127.0.0.1:9160"],
"keyspace": "otter",
"timeout": 30
},
"identity": {
"username": "REPLACE_WITH_REAL_USERNAME",
"password": "REPLACE_WITH_REAL_PASSWORD",
"url": "https://keystone_identity_endpoint.com/v2.0",
"admin_url": "https://keystone_identity_endpoint.com/v2.0",
"max_retries": 10,
"retry_interval": 10,
"wait": 3,
"strategy": "impersonation"
},
"zookeeper": {
"hosts": "127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183",
"threads": 100,
"no_logs": true
},
"scheduler": {
"interval": 10,
"batchsize": 100,
"buckets": 10,
"partition": {
"path": "/scheduler_partition",
"time_boundary": 15
}
},
"worker": {
"lb_max_retries": 10,
"lb_retry_interval_range": [10, 15],
"lb_delete_timeout": 600
},
"limits": {
"pagination": 100,
"absolute": {
"maxGroups": 1000,
"maxPoliciesPerGroup": 100,
"maxWebhooksPerPolicy": 25
}
},
"root": {
"code": 301,
"headers": ["http://redirected_to_api.com"],
"body": "Moved to http://redirected_to_api.com"
},
"metrics": {
"service": "cloudMetricsIngest",
"region": "IAD",
"username": "REPLACE_WITH_REAL_USERNAME",
"password": "REPLACE_WITH_REAL_PASSWORD",
"ttl": 432000,
"interval": 60
},
"cloudfeeds": {
"service": "cloudFeeds",
"tenant_id": "identity_admin_tenant",
"url": "https://cfurl.example.net/not/in/service/catalog"
},
"terminator": {
"interval": 300,
"tenant_id": "identity_admin_tenant",
"cf_cap_url": "https://cfurl.example.net/not/in/service/catalog"
},
"converger": {
"build_timeout": 3600,
"interval": 30,
"limited_retry_iterations": 10
},
"selfheal": {"interval": 300},
"cloud_client": {
"throttling": {
"create_server_delay": 1,
"delete_server_delay": 0.4,
"get_clb_delay": 0.2,
"post_clb_delay": 0.5,
"put_clb_delay": 0.2,
"delete_clb_delay": 0.5,
"get_rcv3_delay": 0.1,
"create_rcv3_delay": 0.4,
"delete_rcv3_delay": 0.4
}
}
}