Merge "Reduce the VLAN/tunneled ranges in fullstack tests"

This commit is contained in:
Zuul 2020-02-17 21:16:38 +00:00 committed by Gerrit Code Review
commit 33242a30dc
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',
},
})