-
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
Add skip_create_image option to the openstack builder #10496
Add skip_create_image option to the openstack builder #10496
Conversation
Codecov Report
|
This is the debug output from the manual integration test with
It works as expected. |
The code is just copied from the googlecloud skip_create_image implementation. https://github.com/hashicorp/packer/blob/master/builder/googlecompute/step_create_image.go#L26
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, LGTM 👍🏼
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Hi Packer team,
i just wanted to have the possibility to verify packer builds in openstack without actually
creating the image as a result.
Then i found the #7209 issue and searched the code base and realized that there is
already a implementation in the googlecloud builder.
https://github.com/hashicorp/packer/blob/master/builder/googlecompute/step_create_image.go#L26
Copied the main code and implemented a skip in all openstack builder steps that either
create an image or reference an already existing one.
As i didn't found any test code for the googlecloud builder i also didn't
created some.
I performed manual tests with our onpremise Openstack installation.
Closes #7209