update cinder def in compute

It was out of date with the latest version of the
modules.
This commit is contained in:
Dan Bode
2012-10-25 16:09:30 -07:00
parent 5b293a1970
commit ecf1033c9e

View File

@@ -145,14 +145,19 @@ class openstack::compute (
} }
if ($cinder) { if ($cinder) {
class { 'cinder': class { 'cinder::base':
rabbit_password => $rabbit_password, rabbit_password => $rabbit_password,
rabbit_host => $rabbit_host, rabbit_host => $rabbit_host,
sql_connection => $cinder_sql_connection, sql_connection => $cinder_sql_connection,
verbose => $verbose, verbose => $verbose,
} }
class { 'cinder::volume': } class { 'cinder::volume': }
class { 'cinder::volume::iscsi': } class { 'cinder::volume::iscsi':
iscsi_ip_address => $internal_address,
volume_group => $nova_volume,
}
nova_config { 'volume_api_class': value => 'nova.volume.cinder.API' }
} else { } else {
# Set up nova-volume # Set up nova-volume
} }