-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F expose openstack image #3905
F expose openstack image #3905
Conversation
Is there anything I need to do on this? |
I'm not sure this is a good way forward. I think fixing the |
I took this route so that any post-processor would have access to the image id. |
OpenStack image ID |
Perfect! Point me in the right direction and I'll see what I can do. |
See #3671 |
I've updated the PR based on your suggestion. |
Any movement on this? It'd be very, very useful, as packer currently uses the nova API for creating images, which doesn't allow you to control whether an image is public/private. This is problematic when used with something like Spinnaker. |
@rickard-von-essen agreed. our team is looking at either PR'ing the base builder to use the image api or writing an openstack post-processor longer term. |
@gkuchta Sounds great, the problem have being getting in Glance support into gophercloud, see rackspace/gophercloud#213 (comment) and we probably need to migrate to gophercloud org before getting Glance support. |
We're planning to rewrite the shell-local post-processor, so this change is unnecessary. Will also be happy to take a look at a PR of #2678 since it looks like the upstream changes have been merged. |
see also #4113 for possible glance support |
Adds
image_info_file
andimage_info_content
configuration options to the Openstack builder so that post-processors have access to the image id (e.g. -- via the artifice post-processor).Relates to #2678