Files
puppet-nova/manifests/compute/neutron.pp
Michael Chapman 6a358c0e9d Make parameter doc RDoc compatible
This patch fixes all remaining parameter documentation
in the nova module to be compatible with puppet-doc
and documents all parameters in a standard way.

Change-Id: I451078d46cb2498dd8e3c23bd8cbcc81b8845fcd
2013-12-16 16:07:10 +11:00

22 lines
601 B
Puppet

# == Class: nova::compute::neutron
#
# Manage the network driver to use for compute guests
# This will use virtio for VM guests and the
# specified driver for the VIF
#
# === Parameters:
#
# [*libvirt_vif_driver*]
# (optional) The vif driver to configure the VIFs
# Defaults to 'nova.virt.libvirt.vif.LibvirtOpenVswitchDriver'
#
class nova::compute::neutron (
$libvirt_vif_driver = 'nova.virt.libvirt.vif.LibvirtOpenVswitchDriver'
) {
nova_config {
'DEFAULT/libvirt_vif_driver': value => $libvirt_vif_driver;
'DEFAULT/libvirt_use_virtio_for_bridges': value => true;
}
}