-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexample.zk.json
43 lines (43 loc) · 1.21 KB
/
example.zk.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
{
"defaultName": "localhost",
"localhost" : {
"exhibitor": null,
"servers": ["localhost"],
"port": 2181,
"username": null,
"password": null,
"configRoot": "/"
},
"_default" : {
"exhibitor": "http://alpha.zk.yourcompany.com/exhibitor/v1/cluster/list/",
"servers": ["alpha.zk.yourcompany.com"],
"port": 2181,
"username": null,
"password": null,
"configRoot": "/alpha"
},
"alpha" : {
"exhibitor": "http://alpha.zk.yourcompany.com/exhibitor/v1/cluster/list/",
"servers": ["alpha.zk.yourcompany.com"],
"port": 2181,
"username": null,
"password": null,
"configRoot": "/alpha"
},
"beta" : {
"exhibitor": "http://beta.zk.yourcompany.com/exhibitor/v1/cluster/list/",
"servers": ["beta.zk.yourcompany.com"],
"port": 2181,
"username": null,
"password": null,
"configRoot": "/beta"
},
"prod" : {
"exhibitor": null,
"servers": ["zk1.yourcompany.com","zk2.yourcompany.com","zk3.yourcompany.com"],
"port": 2181,
"username": null,
"password": null,
"configRoot": "/prod"
}
}