David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 1 | # Deployment configuration for a phyical hardware POD |
| 2 | --- |
| 3 | seedServer: |
| 4 | # IP address of the head node |
| 5 | ip: '10.90.0.2' |
| 6 | |
| 7 | # If the head node is being accessed via a tunnel or reponds to SSH on a non- |
| 8 | # standard port, the port value should be set. |
| 9 | # port: '2022' |
| 10 | |
| 11 | # User name and password used by Ansible to connect to the host for remote |
| 12 | # provisioning |
| 13 | user: 'ubuntu' |
| 14 | password: 'ubuntu' |
| 15 | |
| 16 | # Network address information for the head node: |
| 17 | # |
| 18 | # fabric_ip - the IP address and mask bits to be used to configure the network |
| 19 | # interface connected to the leaf - spine fabric |
| 20 | # |
| 21 | # management_ip - the IP address and mask bits to be used to configure the network |
| 22 | # interface connecting the head node to the POD internal |
| 23 | # management network. The head node will deliver DHCP addresses to |
| 24 | # the other compute nodes over this interface |
| 25 | # |
| 26 | # external_ip - the IP address and mask bits to be used to configure the network |
| 27 | # interface connecting the head node (and the POD) to the |
| 28 | # Internet. All traffic in the POD to external hosts will be |
| 29 | # NAT-ed through this interface |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 30 | # external_iface - the name of the interface that connects the head node to the |
| 31 | # Internet |
| 32 | # management_network - the network and mask bits to used for hosts on the management |
| 33 | # network |
| 34 | fabric_ip: '10.6.1.1/24' |
David K. Bainbridge | 1705b81 | 2016-10-27 11:00:04 -0700 | [diff] [blame] | 35 | #fabric_range_low: '10.6.1.2' |
| 36 | #fabric_range_high: '10.6.1.100' |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 37 | management_ip: '10.6.0.1/24' |
David K. Bainbridge | 9ea73d6 | 2016-11-22 12:59:28 -0800 | [diff] [blame] | 38 | #management_range_low: '10.6.0.2' |
| 39 | #management_range_high: '10.6.0.127' |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 40 | external_ip: '47.135.132.21/24' |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 41 | #external_iface: 'eth2' |
Murat Parlakisik | b7a6bf3 | 2016-08-24 06:52:28 -0700 | [diff] [blame] | 42 | management_network: 10.6.0.0/24 |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 43 | |
| 44 | # the skipTags options allow various part of the deployment to be skipped |
| 45 | # switch_support - does not deploy switch boot images to the PXE server |
| 46 | # |
| 47 | # reboot - will not reboot the head node after updating its network configuration |
| 48 | # this may mean the network configuration will not take effect, but will |
David K. Bainbridge | 53e623f | 2016-10-04 21:11:37 -0700 | [diff] [blame] | 49 | # also prevent you from being locked out of the server if there is a |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 50 | # network configuration error. |
| 51 | # |
| 52 | # interface_config - will not modify the network configuration of the head node, |
| 53 | # including the consistent naming of the network interfaces |
| 54 | skipTags: |
| 55 | # - 'switch_support' |
| 56 | # - 'reboot' |
| 57 | # - 'interface_config' |
| 58 | |
David K. Bainbridge | 53e623f | 2016-10-04 21:11:37 -0700 | [diff] [blame] | 59 | # The following variable settings can be used to customize how the network interfaces |
| 60 | # are selected into the fabric and management bridge interface or ignored/excluded. |
| 61 | # See the documentation docs/quickstart_physical.md for more information about how |
| 62 | # to set these variables. |
| 63 | extraVars: |
| 64 | # - 'fabric_include_names=<name1>,<name2>,...' |
| 65 | # - 'fabric_include_module_types=<mtype1>,<mtype2>,...' |
| 66 | # - 'fabric_include_bus_types=<btype1>,<btype2>,...' |
| 67 | # - 'fabric_exclude_names=<name1>,<name2>,...' |
| 68 | # - 'fabric_exclude_module_types=<mtype1>,<mtype2>,...' |
| 69 | # - 'fabric_exclude_bus_types=<btype1>,<btype2>,...' |
| 70 | # - 'fabric_ignore_names=<name1>,<name2>,...' |
| 71 | # - 'fabric_ignore_module_types=<mtype1>,<mtype2>,...' |
| 72 | # - 'fabric_ignore_bus_types=<btype1>,<btype2>,...' |
| 73 | # - 'management_include_names=<name1>,<name2>,...' |
| 74 | # - 'management_include_module_types=<mtype1>,<mtype2>,...' |
| 75 | # - 'management_include_bus_types=<btype1>,<btype2>,...' |
| 76 | # - 'management_exclude_names=<name1>,<name2>,...' |
| 77 | # - 'management_exclude_module_types=<mtype1>,<mtype2>,...' |
| 78 | # - 'management_exclude_bus_types=<btype1>,<btype2>,...' |
| 79 | # - 'management_ignore_names=<name1>,<name2>,...' |
| 80 | # - 'management_ignore_module_types=<mtype1>,<mtype2>,...' |
| 81 | # - 'management_ignore_bus_types=<btype1>,<btype2>,...' |
David K. Bainbridge | 1705b81 | 2016-10-27 11:00:04 -0700 | [diff] [blame] | 82 | # - ubuntu_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/archive.ubuntu.com/ubuntu trusty main universe" |
| 83 | # - ubuntu_updates_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/archive.ubuntu.com/ubuntu trusty-updates main universe" |
| 84 | # - docker_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/apt.dockerproject.org/repo ubuntu-trusty main" |
| 85 | # - java_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/webupd8team/java/ubuntu trusty main" |
| 86 | # - ansible_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/ansible/ansible/ubuntu trusty main" |
| 87 | # - maas_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/maas/stable/ubuntu trusty main" |
| 88 | # - dell_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/linux.dell.com/repo/community trusty openmanage" |
| 89 | # - juju_apt_repo="deb [arch=amd64] http://10.1.0.1:8889/mirror/ppa.launchpad.net/juju/stable/ubuntu trusty main" |
David K. Bainbridge | 53e623f | 2016-10-04 21:11:37 -0700 | [diff] [blame] | 90 | |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 91 | docker: |
| 92 | imageVersion: candidate |