diff options
author | Tim Rozet <trozet@redhat.com> | 2016-05-20 12:04:07 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-05-20 12:04:07 -0400 |
commit | 08c44e734c45fc370c8d34547a65e226d929075f (patch) | |
tree | 4ecd21d47c20c8d098453cb7927055d428d8a945 /build/nics-controller.yaml.jinja2 | |
parent | e2a2aae5d7f8f3bee9404be3334beeac51d9bf5b (diff) |
Fixes tenant network templates
We only support vxlan tenant network types in OPNFV. There is no need
to create a br-tenant.
Change-Id: Ib84cde7207375ea033518dce99309620f575cb69
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'build/nics-controller.yaml.jinja2')
-rw-r--r-- | build/nics-controller.yaml.jinja2 | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/build/nics-controller.yaml.jinja2 b/build/nics-controller.yaml.jinja2 index d135e2e5..d97ee394 100644 --- a/build/nics-controller.yaml.jinja2 +++ b/build/nics-controller.yaml.jinja2 @@ -104,20 +104,12 @@ resources: {%- set nic_index = 2 %} {%- if 'private_network' in enabled_networks %} - - # Create a bridge which can also be used for VLAN-mode bridge mapping - type: ovs_bridge - name: br-tenant + type: interface + name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} use_dhcp: false addresses: - ip_netmask: {get_param: TenantIpSubnet} - members: - - - type: interface - name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} - use_dhcp: false - # force the MAC address of the bridge to this interface - primary: true {%- endif %} - type: ovs_bridge |