summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPeng Liu <pliu@redhat.com>2016-09-20 16:35:18 -0400
committerPeng Liu <pliu@redhat.com>2016-10-20 04:42:04 -0400
commitbb3dc933b7fd9e04fff5a73df8534494ad980ee7 (patch)
tree686d9246817c14da3841708f421e251ce4ec5b81 /lib
parent1513de7f3d75e93b83ebc88b0d40880985f67400 (diff)
Add ability to configure allowed vlan ranges in deploy configuration
Add a new parameter 'vlan_id_range' for tenant vlan range, which can set the 'network_vlan_ranges' for 'datacentre' network in ml2.ini on both compute and controller. JIRA: APEX-272 Change-Id: I5c190fb2d5d582d0d5f56d4c18cf32502b758bd8 Signed-off-by: Peng Liu <pliu@redhat.com> (cherry picked from commit 3228f00248cda32671fb0e6a02059bea6ae66c99)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/apex/network_environment.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/apex/network_environment.py b/lib/python/apex/network_environment.py
index d96fa44e..61810d80 100644
--- a/lib/python/apex/network_environment.py
+++ b/lib/python/apex/network_environment.py
@@ -126,6 +126,12 @@ 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: