blob: 3743d3babb2c18f0e739943953f7ffeaa8c5c489 [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
Zack Williamsa9e76ec2017-01-20 16:17:35 -07004# via `vagrant up headnode` from the gerrit.opencord.org/maas repository.
Andy Bavier99c11d32016-09-14 17:21:20 -04005---
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
Zack Williamsa9e76ec2017-01-20 16:17:35 -070013 ansible_user: 'vagrant'
14 ansible_ssh_pass: 'vagrant'
Zack Williams932646a2017-01-26 11:08:56 -070015 ansible_ssh_port: 22
Andy Bavier99c11d32016-09-14 17:21:20 -040016
17 # Specifies tasks within the head node provisioning not to execute, including:
18 #
19 # switch_support - don't download the switch ONL images as there are no
20 # switches in this configuration
21 # interface_config - don't update the network configuration of the headnode
22 # as it is configured by vagrant to the proper settings
23 skipTags:
24 - 'switch_support'
25 - 'reboot'
26 - 'interface_config'
27
Andy Bavierb5796fb2016-10-20 12:06:47 -040028 fabric_ip: '10.6.1.1/24'
Andy Bavier99c11d32016-09-14 17:21:20 -040029 management_ip: '10.1.0.1/24'
30 external_iface: 'eth0'
31 management_network: '10.1.0.0/24'
32
33 # Specifies the extra settings required for this configuration
34 #
35 # virtualbox_support - install support for managing virtual box based
36 # compute nodes
Andy Bavier2505f592016-11-11 15:58:55 -050037 # virtualbox_support: 1
38 # power_helper_user: 'cord'
Andy Bavier99c11d32016-09-14 17:21:20 -040039
Zack Williamsa9e76ec2017-01-20 16:17:35 -070040 # on_cloudlab: True
41 cord_in_a_box: True
42
Andy Bavier99c11d32016-09-14 17:21:20 -040043 extraVars:
Andy Bavierb5796fb2016-10-20 12:06:47 -040044 - 'fabric_include_names=eth2'
45 - 'fabric_include_module_types=omit'
46 - 'fabric_exclude_names=eth0,eth1'
47 - 'management_include_names=eth1'
48 - 'management_exclude_names=eth0,eth2'
Andy Bavier99c11d32016-09-14 17:21:20 -040049
50docker:
51 imageVersion: candidate
Andy Bavier8a608cb2016-11-16 06:21:55 -080052 registry: '10.100.198.201:5000'
Andy Bavier99c11d32016-09-14 17:21:20 -040053
54otherServers:
55 # Specifies the configuration for dynamically added compute nodes
56 fabric:
Andy Bavierb5796fb2016-10-20 12:06:47 -040057 network: '10.6.1.1/24'
58 management: '10.1.0.0/24'