Hide Forgot
Description of problem: When we want to create an image, there is no drop-down list available in the format box, resulting that it's impossible to create an image. Version-Release number of selected component (if applicable): Havana Expected results: We shoud see a list of avaible type of images. Additional info: I resolved this by adding this block of text in the /etc/openstack-dashboard/local_settings, right after the OPENSTACK_NEUTRON_NETWORK section : # The OPENSTACK_IMAGE_BACKEND settings can be used to customize features # in the OpenStack Dashboard related to the Image service, such as the list # of supported image formats. OPENSTACK_IMAGE_BACKEND = { 'image_formats': [ ('', ''), ('aki', _('AKI - Amazon Kernel Image')), ('ami', _('AMI - Amazon Machine Image')), ('ari', _('ARI - Amazon Ramdisk Image')), ('iso', _('ISO - Optical Disk Image')), ('qcow2', _('QCOW2 - QEMU Emulator')), ('raw', _('Raw')), ('vdi', _('VDI')), ('vhd', _('VHD')), ('vmdk', _('VMDK')) ] }
This is due to the horizon puppet modules using an outdated copy of local_settings.py when deploying - the bug for this is filed upstream at https://bugs.launchpad.net/puppet-horizon/+bug/1223317 . I also filed https://bugs.launchpad.net/horizon/+bug/1223427 to have Horizon provide a sensible default as a workaround, since this is a surprising behaviour which could be considered a backwards-incompatible change.
Bug 1006766 was filed for the packstack/puppet side of the problem. Will keep this one to track the Horizon-side resolution.
*** Bug 1008940 has been marked as a duplicate of this bug. ***