Luca Prete | f3fc09d | 2017-03-10 13:39:36 -0800 | [diff] [blame] | 1 | # Deployment configuration for a physical hardware POD |
| 2 | --- |
| 3 | seedServer: |
| 4 | ip: '10.90.0.251' |
| 5 | # User name and password used by Ansible to connect to the host for remote |
| 6 | # provisioning. These default values are used for automated testing, change |
| 7 | # with care. |
| 8 | user: 'cord' |
| 9 | password: 'cord' |
| 10 | # Network address information for the head node: |
| 11 | # |
| 12 | # fabric_ip - the IP address and mask bits to be used to configure the network |
| 13 | # interface connected to the leaf - spine fabric |
| 14 | # |
| 15 | # management_ip - the IP address and mask bits to be used to configure the network |
| 16 | # interface connecting the head node to the POD internal |
| 17 | # management network. The head node will deliver DHCP addresses to |
| 18 | # the other compute nodes over this interface |
| 19 | # |
| 20 | # external_ip - the IP address and mask bits to be used to configure the network |
| 21 | # interface connecting the head node (and the POD) to the |
| 22 | # Internet. All traffic in the POD to external hosts will be |
| 23 | # NAT-ed through this interface |
| 24 | fabric_ip: '10.6.1.1/24' |
| 25 | management_ip: '10.6.0.1/24' |
| 26 | external_ip: '10.90.0.251/16' |
| 27 | external_iface: 'eth0' |
| 28 | external_gw: '10.90.0.1' |
| 29 | skipTags: |
| 30 | |
| 31 | passwords: |
| 32 | compute_node: "ubuntu" |
| 33 | maas_admin: "admin" |
| 34 | maas_user: "cord" |
| 35 | |
| 36 | docker: |
| 37 | imageVersion: candidate |
| 38 | |
| 39 | otherNodes: |
| 40 | # Experimental |
| 41 | # |
| 42 | # Specifies the subnet and address range that will be used to allocate IP addresses |
| 43 | # to the compute nodes as they are deployed into the POD. |
| 44 | fabric: |
| 45 | network: 10.6.1.1/24 |
| 46 | range_low: 10.6.1.2 |
| 47 | range_high: 10.6.1.253 |