| Summary: | No format list available | ||
|---|---|---|---|
| Product: | [Community] RDO | Reporter: | mlessard |
| Component: | python-django-horizon | Assignee: | Julie Pichon <jpichon> |
| Status: | CLOSED ERRATA | QA Contact: | Ami Jeain <ajeain> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | unspecified | CC: | aortega, athomas, jpichon, markmc, mrunge, yeylon |
| Target Milestone: | RC | Keywords: | Triaged |
| Target Release: | Havana | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | python-django-horizon-2013.2-3 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-11-29 19:49:11 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
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. *** |
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')) ] }