-
Notifications
You must be signed in to change notification settings - Fork 6
/
hbase-master.json
executable file
·42 lines (42 loc) · 1.04 KB
/
hbase-master.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
{
"id" : "hbase-master",
"kind" : "Pod",
"apiVersion" : "v1beta1",
"desiredState" : {
"manifest" : {
"version" : "v1beta1",
"id" : "hbase-master",
"containers" : [{
"name" : "hbase-master",
"image" : "bioshrek/hbase-master:cdh5",
"ports" : [{
"containerPort" : 60000,
"hostPort" : 60000
}, {
"containerPort" : 60010,
"hostPort" : 60010
}
],
"imagePullPolicy" : "PullNever",
"volumeMounts" : [{
"name" : "hbase-log-dir",
"mountPath" : "/home/chianyu/shared_with_docker_container/hbase-log-dir"
}
]
}
],
"volumes" : [{
"name" : "hbase-log-dir",
"source" : {
"hostDir" : {
"path" : "/home/chianyu/shared_with_docker_container/hbase-log-dir"
}
}
}
]
}
},
"labels" : {
"name" : "hbase-master"
}
}