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 VirtualBox based head node. |
| 18 | # |
| 19 | # This deployment configuration can be utilized with the head node created |
| 20 | # via `vargrant up headnode` from the gerrit.opencord.org/maas repository. |
| 21 | --- |
| 22 | seedServer: |
| 23 | ip: '10.100.198.201' |
| 24 | |
| 25 | # User name and password used by Ansible to connect to the host for remote |
| 26 | # provisioning |
| 27 | user: 'vagrant' |
| 28 | password: 'vagrant' |
| 29 | |
| 30 | # Specifies tasks within the head node provisioning not to execute, including: |
| 31 | # |
| 32 | # switch_support - don't download the switch ONL images as there are no |
| 33 | # switches in this configuration |
| 34 | # interface_config - don't update the network configuration of the headnode |
| 35 | # as it is configured by vagrant to the proper settings |
| 36 | skipTags: |
| 37 | - 'switch_support' |
| 38 | - 'interface_config' |
| 39 | |
| 40 | management_ip: '10.1.0.1/24' |
| 41 | management_iface: 'eth2' |
| 42 | external_iface: 'eth0' |
| 43 | management_network: '10.1.0.0/24' |
| 44 | |
| 45 | # Specifies the extra settings required for this configuration |
| 46 | # |
| 47 | # virtualbox_support - install support for managing virtual box based |
| 48 | # compute nodes |
| 49 | virtualbox_support: 1 |
| 50 | power_helper_user: 'cord' |
| 51 | |
| 52 | docker: |
| 53 | imageVersion: 'candidate' |
| 54 | registry: 'docker-registry:5000' |
| 55 | |
| 56 | otherServers: |
| 57 | # Specifies the configuration for dynamically added compute nodes |
| 58 | location: 'http://gerrit.opencord.org/maas' |
| 59 | rolesPath: 'roles' |
| 60 | role: 'compute-node' |
| 61 | fabric: |
| 62 | network: '10.1.1.1/24' |
| 63 | range_low: '10.1.1.2' |
| 64 | range_high: '10.1.1.253' |