-
Notifications
You must be signed in to change notification settings - Fork 452
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
Fix ova deploy and tests #1221
Fix ova deploy and tests #1221
Conversation
@@ -7178,11 +7178,17 @@ resource "vsphere_virtual_machine" "vm" { | |||
datacenter_id = data.vsphere_datacenter.rootdc1.id | |||
host_system_id = data.vsphere_host.roothost1.id | |||
wait_for_guest_net_timeout = 0 | |||
wait_for_guest_ip_timeout = 1 | |||
wait_for_guest_ip_timeout = 0 |
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.
Why are we changing this? I'm concerned that it may surprise users depending on existing behaviour.
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.
Thats just to help speed up the testing. Not all ovf/ova sources have vmware tools installed, so (along with speeding things up) I didn't want to get acc test failures based on that.
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.
You are right, I shouldn't be reviewing code this early :)
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.
Ha! And I shouldn't be submitting a PR this late!
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.
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
Alloow
datastore_id
to be computed since it is not required for ovf deployment, and then run VM read at the end of creation.