forked from Capgemini/Apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagrant.yml
44 lines (42 loc) · 1006 Bytes
/
vagrant.yml
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
masters:
# Memory and Cpus setting
##########################
mem: 512
cpus: 1
# Actual instances
##################
ips:
- 172.31.1.11
- 172.31.1.12
- 172.31.1.13
# By default only one slave is set, to increase that number just add new ips.
slaves:
# Memory and Cpus setting
##########################
mem: 1024
cpus: 2
# Slave IPs - must be in the same private address range as the master instances
# See http://en.wikipedia.org/wiki/Private_network#Private_IPv4_address_spaces
ips:
- 172.31.1.14
ansible_groups:
"all:children":
- mesos_masters
- mesos_slaves
- load_balancers
"load_balancers:children":
- mesos_slaves
"zookeeper_servers:children":
- mesos_masters
"consul_servers:children":
- mesos_masters
"weave_servers:children":
- mesos_masters
- mesos_slaves
- load_balancers
"marathon_servers":
- mesos_masters
"vagrant:children":
- mesos_masters
- mesos_slaves
- load_balancers