-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle-dev.yaml
50 lines (50 loc) · 1.13 KB
/
bundle-dev.yaml
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
services:
namenode:
charm: cs:~bigdata-dev/trusty/apache-hadoop-namenode
num_units: 1
annotations:
gui-x: "600"
gui-y: "350"
constraints: mem=7G
resourcemanager:
charm: cs:~bigdata-dev/trusty/apache-hadoop-resourcemanager
num_units: 1
annotations:
gui-x: "600"
gui-y: "100"
constraints: mem=7G
slave:
charm: cs:~bigdata-dev/trusty/apache-hadoop-slave
num_units: 3
annotations:
gui-x: "250"
gui-y: "200"
constraints: mem=7G
plugin:
charm: cs:~bigdata-dev/trusty/apache-hadoop-plugin
annotations:
gui-x: "950"
gui-y: "200"
spark:
charm: cs:~bigdata-dev/trusty/apache-spark
options:
spark_execution_mode: yarn-client
num_units: 1
annotations:
gui-x: "1300"
gui-y: "100"
constraints: mem=7G
zeppelin:
charm: cs:~bigdata-dev/trusty/apache-zeppelin
annotations:
gui-x: "1300"
gui-y: "350"
series: trusty
relations:
- [namenode, slave]
- [resourcemanager, slave]
- [resourcemanager, namenode]
- [plugin, namenode]
- [plugin, resourcemanager]
- [spark, plugin]
- [zeppelin, spark]