Merge "Don't force images to raw format"
This commit is contained in:
commit
bc7b2bdd01
@ -102,6 +102,7 @@ class infracloud::compute(
|
|||||||
# nova-compute service
|
# nova-compute service
|
||||||
class { '::nova::compute':
|
class { '::nova::compute':
|
||||||
enabled => true,
|
enabled => true,
|
||||||
|
force_raw_images => false,
|
||||||
}
|
}
|
||||||
|
|
||||||
# nova.conf neutron credentials
|
# nova.conf neutron credentials
|
||||||
@ -120,6 +121,12 @@ class infracloud::compute(
|
|||||||
libvirt_virt_type => $virt_type,
|
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 ###
|
||||||
|
|
||||||
# neutron.conf
|
# neutron.conf
|
||||||
|
Loading…
Reference in New Issue
Block a user