
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
22 lines
601 B
Puppet
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;
|
|
}
|
|
}
|