fix vxlan example to contain a valid range

Otherwise we end up with the following error:

ERROR neutron.plugins.ml2.drivers.type_vxlan NetworkTunnelRangeError: Invalid network Tunnel range: '0:300' - 0 is not a valid vxlan identifier

Change-Id: I3ff2eda1c9fc0d82e7f0f42ae1615dc5c0e7d5fd
This commit is contained in:
Marcus Furlong 2016-02-23 12:56:10 +11:00
parent b6f722c23f
commit 97ec23c39e

View File

@ -65,7 +65,7 @@ class { '::neutron::plugins::ml2':
tenant_network_types => ['vxlan'],
vxlan_group => '239.1.1.1',
mechanism_drivers => ['openvswitch'],
vni_ranges => ['0:300']
vni_ranges => ['1:300']
}
```