summaryrefslogtreecommitdiffstats
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
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)
-rw-r--r--config/network/network_settings.yaml1
-rw-r--r--lib/python/apex/network_environment.py6
2 files changed, 7 insertions, 0 deletions
diff --git a/config/network/network_settings.yaml b/config/network/network_settings.yaml
index f7680643..5c9d644c 100644
--- a/config/network/network_settings.yaml
+++ b/config/network/network_settings.yaml
@@ -57,6 +57,7 @@ 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 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: