Remove bridge creation from nova::compute::libvirt

As this is incompatible with some networking modes.
Is there any reason it should be there anyway ?
This commit is contained in:
François Charlier 2012-04-12 18:53:10 +02:00
parent 9213b09a68
commit c1c908e897
1 changed files with 1 additions and 9 deletions

View File

@ -1,8 +1,5 @@
class nova::compute::libvirt (
$libvirt_type = 'kvm',
$flat_network_bridge = 'br100',
$flat_network_bridge_ip,
$flat_network_bridge_netmask
$libvirt_type = 'kvm'
) inherits nova::compute{
include nova::params
@ -25,9 +22,4 @@ class nova::compute::libvirt (
nova_config { 'libvirt_type': value => $libvirt_type }
nova_config { 'connection_type': value => 'libvirt' }
nova::network::bridge { $flat_network_bridge:
ip => $flat_network_bridge_ip,
netmask => $flat_network_bridge_netmask,
}
}