| |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| |
| # Deployment configuration for VirtualBox based head node. |
| # |
| # This deployment configuration can be utilized with the head node created |
| # via `vargrant up headnode` from the gerrit.opencord.org/maas repository. |
| --- |
| debug: false |
| |
| # this is used to generate the genconfig/cord-inv file |
| headnode: |
| ip: '10.100.198.201' |
| ansible_user: 'vagrant' |
| ansible_ssh_pass: 'vagrant' |
| ansible_ssh_port: 22 |
| |
| common: |
| |
| # set to the profile of cord you want to install |
| cord_profile: 'rcord' |
| |
| # cord dir is shared to corddev VM, causing permissions issues if these aren't set |
| credentials_dir: '/opt/credentials' |
| pki_dir: '/opt/pki' |
| ssh_pki_dir: '/opt/ssh_pki' |
| |
| # Specifies tasks within the head node provisioning not to execute, including: |
| # |
| # switch_support - don't download the switch ONL images as there are no |
| # switches in this configuration |
| # interface_config - don't update the network configuration of the headnode |
| # as it is configured by vagrant to the proper settings |
| skipTags: |
| - 'switch_support' |
| - 'reboot' |
| - 'interface_config' |
| |
| fabric_ip: '10.1.1.1/24' |
| management_ip: '10.1.0.1/24' |
| external_iface: 'eth0' |
| management_network: '10.1.0.0/24' |
| |
| # Specifies the extra settings required for this configuration |
| # |
| # virtualbox_support - install support for managing virtual box based |
| # compute nodes |
| virtualbox_support: 1 |
| power_helper_user: 'cord' |
| |
| docker: |
| imageVersion: candidate |