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 |
David K. Bainbridge | a80216f | 2016-08-22 15:29:54 -0700 | [diff] [blame] | 34 | # fabric_iface_spec - specifies the NIC types that will be used for the leaf spine |
| 35 | # fabric in the deployment. This defaults to "i40e|mlx4_en". The |
| 36 | # format is values separated by a vertical bar '|' without spaces. |
| 37 | # The value that this is compared against is the value return by |
| 38 | # `ethtool -i <iface>` on the head and compute nodes. |
| 39 | # |
David K. Bainbridge | 2637af8 | 2016-08-25 10:53:00 -0700 | [diff] [blame] | 40 | #fabric_iface_spec: 'i40e|mlx4_en' |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 41 | fabric_ip: '10.6.1.1/24' |
| 42 | management_ip: '10.6.0.1/24' |
| 43 | external_ip: '47.135.132.21/24' |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 44 | #external_iface: 'eth2' |
Murat Parlakisik | b7a6bf3 | 2016-08-24 06:52:28 -0700 | [diff] [blame] | 45 | management_network: 10.6.0.0/24 |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 46 | |
| 47 | # the skipTags options allow various part of the deployment to be skipped |
| 48 | # switch_support - does not deploy switch boot images to the PXE server |
| 49 | # |
| 50 | # reboot - will not reboot the head node after updating its network configuration |
| 51 | # this may mean the network configuration will not take effect, but will |
| 52 | # also prevent you from being locked out of the server if there is a |
| 53 | # network configuration error. |
| 54 | # |
| 55 | # interface_config - will not modify the network configuration of the head node, |
| 56 | # including the consistent naming of the network interfaces |
| 57 | skipTags: |
| 58 | # - 'switch_support' |
| 59 | # - 'reboot' |
| 60 | # - 'interface_config' |
| 61 | |
| 62 | docker: |
| 63 | imageVersion: candidate |
| 64 | |
| 65 | otherNodes: |
| 66 | # Experimental |
| 67 | # |
| 68 | # Specifies the subnet and address range that will be used to allocate IP addresses |
| 69 | # to the compute nodes as they are deployed into the POD. |
| 70 | fabric: |
Murat Parlakisik | b7a6bf3 | 2016-08-24 06:52:28 -0700 | [diff] [blame] | 71 | network: 10.6.1.1/24 |
| 72 | management: 10.6.0.0/24 |
| 73 | range_low: 10.6.1.2 |
David K. Bainbridge | d54ca70 | 2016-07-13 22:27:12 -0700 | [diff] [blame] | 74 | range_high: 10.6.1.253 |