blob: edc4bca150253731e968a7731f659a500f98f912 [file] [log] [blame]
Andy Bavier99c11d32016-09-14 17:21:20 -04001# Deployment configuration for VirtualBox based head node.
2#
3# This deployment configuration can be utilized with the head node created
4# via `vargrant up headnode` from the gerrit.opencord.org/maas repository.
5---
6debug: false
7
8seedServer:
9 ip: '10.100.198.201'
10
11 # User name and password used by Ansible to connect to the host for remote
12 # provisioning
Andy Bavier2505f592016-11-11 15:58:55 -050013 user: 'vagrant'
14 password: 'vagrant'
Andy Bavier99c11d32016-09-14 17:21:20 -040015
16 # Specifies tasks within the head node provisioning not to execute, including:
17 #
18 # switch_support - don't download the switch ONL images as there are no
19 # switches in this configuration
20 # interface_config - don't update the network configuration of the headnode
21 # as it is configured by vagrant to the proper settings
22 skipTags:
23 - 'switch_support'
24 - 'reboot'
25 - 'interface_config'
26
Andy Bavierb5796fb2016-10-20 12:06:47 -040027 fabric_ip: '10.6.1.1/24'
Andy Bavier99c11d32016-09-14 17:21:20 -040028 management_ip: '10.1.0.1/24'
29 external_iface: 'eth0'
30 management_network: '10.1.0.0/24'
31
32 # Specifies the extra settings required for this configuration
33 #
34 # virtualbox_support - install support for managing virtual box based
35 # compute nodes
Andy Bavier2505f592016-11-11 15:58:55 -050036 # virtualbox_support: 1
37 # power_helper_user: 'cord'
Andy Bavier99c11d32016-09-14 17:21:20 -040038
39 extraVars:
40 #- 'on_cloudlab=True'
41 - 'cord_in_a_box=True'
Andy Bavierb5796fb2016-10-20 12:06:47 -040042 - 'fabric_include_names=eth2'
43 - 'fabric_include_module_types=omit'
44 - 'fabric_exclude_names=eth0,eth1'
45 - 'management_include_names=eth1'
46 - 'management_exclude_names=eth0,eth2'
Andy Bavier99c11d32016-09-14 17:21:20 -040047
48docker:
49 imageVersion: candidate
Andy Bavier8a608cb2016-11-16 06:21:55 -080050 registry: '10.100.198.201:5000'
Andy Bavier99c11d32016-09-14 17:21:20 -040051
52otherServers:
53 # Specifies the configuration for dynamically added compute nodes
54 fabric:
Andy Bavierb5796fb2016-10-20 12:06:47 -040055 network: '10.6.1.1/24'
56 management: '10.1.0.0/24'