blob: 9c5f50ecf55a370235e9ccbfaf97968b80b05abc [file] [log] [blame]
Andrea Campanella2e217ae2017-04-07 13:01:12 +02001# Deployment configuration for VirtualBox based head node.
2#
3# This deployment configuration can be utilized with the head node created
4# via `vagrant up headnode` from the gerrit.opencord.org/maas repository.
5---
6debug: false
7
8# this is used to generate the genconfig/cord-inv file
9headnode:
10 ip: '10.100.198.201'
11 ansible_user: 'vagrant'
12 ansible_ssh_pass: 'vagrant'
13 ansible_ssh_port: 22
14
15common:
16 # all of these are written to genconfig/config.yml, and needs a rework
17
18 # set to the "flavor" of cord you want to install
19 cord_profile: 'ecord'
Andrea Campanella2e217ae2017-04-07 13:01:12 +020020
21 # Specifies tasks within the head node provisioning not to execute, including:
22 #
23 # switch_support - don't download the switch ONL images as there are no
24 # switches in this configuration
25 # interface_config - don't update the network configuration of the headnode
26 # as it is configured by vagrant to the proper settings
27 skipTags:
28 - 'switch_support'
29 - 'reboot'
30 - 'interface_config'
31
32 fabric_ip: '10.6.1.1/24'
33 management_ip: '10.1.0.1/24'
34 external_iface: 'eth0'
35 management_network: '10.1.0.0/24'
36
37 # Specifies the extra settings required for this configuration
38 #
39 # virtualbox_support - install support for managing virtual box based
40 # compute nodes
41 # virtualbox_support: 1
42 # power_helper_user: 'cord'
43
44 # on_cloudlab: True
45 cord_in_a_box: True
46
47 extraVars:
48 - 'fabric_include_names=eth2'
49 - 'fabric_include_module_types=omit'
50 - 'fabric_exclude_names=eth0,eth1'
51 - 'management_include_names=eth1'
52 - 'management_exclude_names=eth0,eth2'
53
54docker:
55 imageVersion: candidate
56 registry: '10.100.198.201:5000'
57
58otherServers:
59 # Specifies the configuration for dynamically added compute nodes
60 fabric:
61 network: '10.6.1.1/24'
62 management: '10.1.0.0/24'
63