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.202' |
| 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 | # Specifies the extra settings required for this configuration |
| 41 | # |
| 42 | # virtualbox_support - install support for managing virtual box based |
| 43 | # compute nodes |
| 44 | extraVars: |
| 45 | - 'virtualbox_support=1' |
| 46 | - 'external_iface=eth0' |
| 47 | |
| 48 | otherServers: |
| 49 | # Specifies the configuration for dynamically added compute nodes |
| 50 | location: 'http://gerrit.opencord.org/maas' |
| 51 | rolesPath: 'roles' |
| 52 | role: 'compute-node' |
| 53 | |
| 54 | docker: |
| 55 | registry: '10.100.198.200:5000/opencord' |
| 56 | imageVersion: 'candidate' |