Merge "Don't force images to raw format"

This commit is contained in:
Jenkins 2016-09-20 15:26:25 +00:00 committed by Gerrit Code Review
commit bc7b2bdd01
1 changed files with 8 additions and 1 deletions

View File

@ -101,7 +101,8 @@ class infracloud::compute(
# nova-compute service
class { '::nova::compute':
enabled => true,
enabled => true,
force_raw_images => false,
}
# nova.conf neutron credentials
@ -120,6 +121,12 @@ class infracloud::compute(
libvirt_virt_type => $virt_type,
}
# NOTE(pabelanger): This is needed for force_raw_images to work. Otherwise
# nova will still convert images to raw.
nova_config {
'libvirt/images_type': value => 'qcow2';
}
### Neutron ###
# neutron.conf