Andy Bavier | 1b8a537 | 2016-07-07 19:36:21 -0400 | [diff] [blame] | 1 | # Deployment configuration for a single-node physical hardware POD |
| 2 | --- |
| 3 | seedServer: |
| 4 | |
| 5 | # Put the IP of your CloudLab node here |
| 6 | ip: '128.104.222.83' |
| 7 | |
| 8 | # User name and password used by Ansible to connect to the host for remote |
| 9 | # provisioning. Put your CloudLab username here; also add your password or |
| 10 | # run ssh-agent to allow for password-less SSH login. |
| 11 | user: 'acb' |
| 12 | password: 'onos_test' |
| 13 | |
| 14 | # |
| 15 | # *** For a single-node pod on CloudLab, you don't need to change anything below here *** |
| 16 | # |
| 17 | |
| 18 | # Network address information for the head node: |
| 19 | # |
| 20 | # fabric_ip - the IP address and mask bits to be used to configure the network |
| 21 | # interface connected to the leaf - spine fabric |
| 22 | # |
| 23 | # management_ip - the IP address and mask bits to be used to configure the network |
| 24 | # interface connecting the head node to the POD internal |
| 25 | # management network. The head node will deliver DHCP addresses to |
| 26 | # the other compute nodes over this interface |
| 27 | # |
| 28 | # external_ip - the IP address and mask bits to be used to configure the network |
| 29 | # interface connecting the head node (and the POD) to the |
| 30 | # Internet. All traffic in the POD to external hosts will be |
| 31 | # NAT-ed through this interface |
| 32 | management_ip: '10.6.0.1/24' |
| 33 | management_iface: 'eth2' |
| 34 | external_iface: 'eth0' |
| 35 | skipTags: |
| 36 | - 'interface_config' |
| 37 | - 'switch_support' |
| 38 | extraVars: |
| 39 | - 'on_cloudlab=True' |
| 40 | |
| 41 | docker: |
| 42 | imageVersion: candidate |
| 43 | |
| 44 | otherNodes: |
| 45 | # Experimental |
| 46 | # |
| 47 | # Specifies the subnet and address range that will be used to allocate IP addresses |
| 48 | # to the compute nodes as they are deployed into the POD. |
| 49 | fabric: |
| 50 | network: 10.6.1.1/24 |
| 51 | range_low: 10.6.1.2 |
| 52 | range_high: 10.6.1.253 |