diff options
author | Yifei Xue <xueyifei@huawei.com> | 2018-01-27 11:41:04 +0800 |
---|---|---|
committer | Yifei Xue <xueyifei@huawei.com> | 2018-01-27 11:41:04 +0800 |
commit | 2c93fa28f1f1e78f4135f096f0c59e82963fd847 (patch) | |
tree | d6bb29a02db2c75a10f15e2422d187c1c10dc52a /deploy | |
parent | a3e5685e01696a85550c13ef7326b3103b8123ff (diff) |
Enable neutron port trunk
JIRA: COMPASS-571
The network trunk service allows multiple networks to be connected to an
instance using a single virtual NIC (vNIC). Multiple networks can be presented
to an instance by connecting it to a single port. This is a highly relevant
feature for VNFs and hence for OPNFV as a reference NFVI.
This patch is about enabling the trunk port feature in Compass deployments.
Change-Id: I270c3f1d5e4af99578c8e1882fae12ddddaabe78
Signed-off-by: Yifei Xue <xueyifei@huawei.com>
Diffstat (limited to 'deploy')
-rw-r--r-- | deploy/adapters/ansible/roles/config-osa/templates/user_variables.yml.j2 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/config-osa/templates/user_variables.yml.j2 b/deploy/adapters/ansible/roles/config-osa/templates/user_variables.yml.j2 index 130b5ad1..03e3a2af 100644 --- a/deploy/adapters/ansible/roles/config-osa/templates/user_variables.yml.j2 +++ b/deploy/adapters/ansible/roles/config-osa/templates/user_variables.yml.j2 @@ -45,6 +45,11 @@ neutron_plugin_type: ml2.ovs neutron_ml2_drivers_type: "local,flat,{{ tenant_net_info['type'] }}" +neutron_plugin_base: + - router + - metering + - trunk + neutron_provider_networks: network_flat_networks: "*" network_types: "{{ tenant_net_info['type'] }}" |