Merge pull request #52 from bodepd/allow_vg_overrides_in_all

Allow nova volume vg name to be overridden in openstack::all
This commit is contained in:
Branan Purvine-Riley
2012-05-29 10:01:01 -07:00

View File

@@ -28,7 +28,8 @@ class openstack::all(
# config
$verbose = false,
$purge_nova_config = true,
$libvirt_type = 'kvm'
$libvirt_type = 'kvm',
$nova_volume = 'nova-volumes'
) {
@@ -194,6 +195,7 @@ class openstack::all(
}
class { 'nova::volume::iscsi':
volume_group => $nova_volume,
iscsi_ip_address => '127.0.0.1',
}