Matteo Scandolo | 48d3d2d | 2017-08-08 13:05:27 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
A R Karthick | 6d98a59 | 2016-08-24 15:16:46 -0700 | [diff] [blame] | 17 | # Deployment configuration for a phyical hardware POD |
| 18 | --- |
| 19 | seedServer: |
| 20 | ip: '47.135.132.21' |
| 21 | # User name and password used by Ansible to connect to the host for remote |
| 22 | # provisioning |
| 23 | user: 'ubuntu' |
| 24 | password: 'ubuntu' |
| 25 | |
| 26 | # Network address information for the head node: |
| 27 | # |
| 28 | # fabric_ip - the IP address and mask bits to be used to configure the network |
| 29 | # interface connected to the leaf - spine fabric |
| 30 | # |
| 31 | # management_ip - the IP address and mask bits to be used to configure the network |
| 32 | # interface connecting the head node to the POD internal |
| 33 | # management network. The head node will deliver DHCP addresses to |
| 34 | # the other compute nodes over this interface |
| 35 | # |
| 36 | # external_ip - the IP address and mask bits to be used to configure the network |
| 37 | # interface connecting the head node (and the POD) to the |
| 38 | # Internet. All traffic in the POD to external hosts will be |
| 39 | # NAT-ed through this interface |
| 40 | fabric_ip: '10.6.1.1/24' |
| 41 | management_ip: '10.6.0.1/24' |
| 42 | external_ip: '47.135.132.21/24' |
| 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 |