From: Feng Pan Date: Fri, 21 Oct 2016 00:27:45 +0000 (+0000) Subject: Revert "Add ability to configure allowed vlan ranges in deploy configuration" X-Git-Tag: colorado.2.0~12^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=f239be9ac62cbfea8f4f9051521c3cd8b15aa342;p=apex.git Revert "Add ability to configure allowed vlan ranges in deploy configuration" This reverts commit bb3dc933b7fd9e04fff5a73df8534494ad980ee7.' Change-Id: If53a550dfc7ee15c5b4ee8cc50a6e94e4cff1415 Signed-off-by: Feng Pan --- diff --git a/config/network/network_settings.yaml b/config/network/network_settings.yaml index 5c9d644c..f7680643 100644 --- a/config/network/network_settings.yaml +++ b/config/network/network_settings.yaml @@ -57,7 +57,6 @@ private_network: cidr: 11.0.0.0/24 compute_interface: nic2 controller_interface: nic2 - vlan_id_range: 1,1000 # Tenant physical network VLAN-ID range # "public" network is used for external connectivity. # The external network provides Internet access for virtual diff --git a/lib/python/apex/network_environment.py b/lib/python/apex/network_environment.py index 61810d80..d96fa44e 100644 --- a/lib/python/apex/network_environment.py +++ b/lib/python/apex/network_environment.py @@ -126,12 +126,6 @@ class NetworkEnvironment(dict): }] priv_cidr = net_settings[PRIVATE_NETWORK]['cidr'] self[param_def]['TenantNetCidr'] = str(priv_cidr) - if 'vlan_id_range' in net_settings[PRIVATE_NETWORK].keys(): - tenant_vlan_range = \ - net_settings[PRIVATE_NETWORK]['vlan_id_range'].split(',') - self[param_def]['NeutronNetworkVLANRanges'] = \ - "datacentre:" + tenant_vlan_range[0] + ':' \ - + tenant_vlan_range[1] if priv_cidr.version == 6: postfix = '/tenant_v6.yaml' else: