Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 1 | --- |
Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 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 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 16 | # compute-node-config/defaults/main.yml |
| 17 | |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 18 | # default site/deployment placeholder names |
Zack Williams | 7928696 | 2017-07-10 12:24:37 -0700 | [diff] [blame] | 19 | site_name: placeholder-sitename |
| 20 | deployment_type: placeholder-deploymenttype |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 21 | |
Zack Williams | c989f26 | 2017-05-11 13:02:59 -0700 | [diff] [blame] | 22 | # location of cord_profile on head node |
| 23 | head_cord_profile_dir: /opt/cord_profile |
| 24 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 25 | # service configs referenced here are likely located in cord-profile/templates |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 26 | |
| 27 | # used in openstack-compute-vtn.yaml.j2, referencing service in fabric.yaml.j2 |
| 28 | use_fabric: False |
| 29 | |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 30 | # name of the fabric interface on compute nodes, |
| 31 | # VTN adds it to `br-int`, when provided as the `dataPlaneIntf` |
| 32 | # default values: |
| 33 | # - `fabric` is default when using MaaS |
Zack Williams | b61ca26 | 2018-01-29 17:01:21 -0700 | [diff] [blame] | 34 | # - `fabricbond` is default for all other configs (created with interface-config role) |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 35 | |
Zack Williams | b61ca26 | 2018-01-29 17:01:21 -0700 | [diff] [blame] | 36 | vtn_integration_bridge_interface: fabricbond |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 37 | |
| 38 | computenode_fabric_interfaces: |
| 39 | - "{{ vtn_integration_bridge_interface }}" |
| 40 | - br-int |
| 41 | |
| 42 | # used in openstack-compute-vtn.yaml.j2, referencing network in management-net.yaml.j2 |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 43 | use_vtn_net_management_host: False |
Zack Williams | b61ca26 | 2018-01-29 17:01:21 -0700 | [diff] [blame] | 44 | vtn_net_management_host_interface: vethmgmt1 |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 45 | |