Reduce the VLAN/tunneled ranges in fullstack tests

Reduce the number of VLAN and tunneled network ranges (GRE, VXLAN)
to 30 tags, in fullstack tests. This will reduce the amount of time
spent, during the Neutron server start, in the VLAN and tunnel
drivers initialization.

Partial-Bug: #1862178

Change-Id: I7ae82d163c46bbc3ee7430293555c66fbda17b08
This commit is contained in:
Rodolfo Alonso Hernandez 2020-02-11 13:56:59 +00:00
parent de0d9da2fe
commit efec8fc153
1 changed files with 3 additions and 3 deletions

View File

@ -173,13 +173,13 @@ class ML2ConfigFixture(ConfigFixture):
'mechanism_drivers': mechanism_drivers,
},
'ml2_type_vlan': {
'network_vlan_ranges': PHYSICAL_NETWORK_NAME + ':1000:2999',
'network_vlan_ranges': PHYSICAL_NETWORK_NAME + ':1000:1029',
},
'ml2_type_gre': {
'tunnel_id_ranges': '1:1000',
'tunnel_id_ranges': '1:30',
},
'ml2_type_vxlan': {
'vni_ranges': '1001:2000',
'vni_ranges': '1001:1030',
},
})