To deploy applications with murano, virtual machine images should be uploaded into glance in a special way - murano_image_info property should be set.
openstack image create --public \
> --disk-format qcow2 --container-format bare \
> --file <IMAGE_FILE> --property <IMAGE_METADATA> <NAME>
Replace the command line arguments to openstack image create with the appropriate values for your environment and disk image:
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
where:
openstack image set --property <IMAGE_MATADATA> <IMAGE_ID>
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
Warning
The value of the –property argument (named murano_image_info) is a JSON string. Only double quotes are valid in JSON, so please type the string exactly as in the example above.
Note
Existing images could be marked in a simple way in the horizon UI with the murano dashboard installed. Navigate to Applications -> Manage -> Images -> Mark Image and fill up a form:
After these steps desired image can be chosen in application creation wizard.
Type Name | Description |
---|---|
windows.2012 | Windows Server 2012 |
linux | Generic Linux images, Ubuntu / Debian, RedHat / Centos, etc |
cirros.demo | Murano demo image, based on CirrOS |
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.