-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
78 lines (74 loc) · 1.58 KB
/
config.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
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
---
default_options: &defaults
box_name: ubuntu-utopic
box_url: https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box
bootstrap:
type: script
script: ./boot/bootstrap.sh
spec:
default_master_specs: &default_specs
cpus: 1
memory: 1024
biosbootmenu: disabled
default_slave_specs: &default_slave_specs
cpus: 2
memory: 2048
biosbootmenu: disabled
boxes:
- <<: *defaults
hostname: mesos-master101
networks:
- name: private_network
ip: 10.0.1.100
spec:
<<: *default_specs
- <<: *defaults
hostname: mesos-master102
networks:
- name: private_network
ip: 10.0.1.101
spec:
<<: *default_specs
- <<: *defaults
hostname: mesos-slave101
networks:
- name: private_network
ip: 10.0.1.201
spec:
<<: *default_slave_specs
- <<: *defaults
hostname: mesos-slave102
networks:
- name: private_network
ip: 10.0.1.202
spec:
<<: *default_slave_specs
- <<: *defaults
hostname: mesos-slave103
networks:
- name: private_network
ip: 10.0.1.203
spec:
<<: *default_slave_specs
- <<: *defaults
hostname: mesos-slave104
networks:
- name: private_network
ip: 10.0.1.204
spec:
<<: *default_slave_specs
- <<: *defaults
hostname: events101
networks:
- name: private_network
ip: 10.0.1.111
spec:
<<: *default_specs
- <<: *defaults
hostname: hub101
networks:
- name: private_network
ip: 10.0.1.112
spec:
<<: *default_specs
memory: 2048