-
Notifications
You must be signed in to change notification settings - Fork 180
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
Mount and use host's go binary in the vagrant vm #31
Conversation
@mapuri - if go version is picked up from host:
|
With this change the 'go' installed in vagrant vm shall never be used. Even on a laptop setup, assuming the user brings up the 'vagrant vm' using 'make demo' then it will correctly pass the path of go-binary on the laptop to the vm for mounting and using it.
Yes, I think the problem still exists. Just tried mismatching versions and didn't work. I think the go version installed on the vm is still interfering even though it is using host's go binary 😞 . Will continue digging. |
Changes involve mountiing the host's go binary and root directories in the vagrant vm, to allow 'go test' run in the vm using same environment as the host's build environment. This allows to relax the strict version check for host go version.
I think I found the issue, looks like just mounting the go-binary directory is not enough, we need to mount the host's go-root as well. After mounting the go-root I am able to run tests with a mismatch in go environment. I have updated the PR with the change. Just as a side note, we can get rid of the go installation in the vagrant-vm completely to easily debug any related issues, but it will need updating the vagrant box. I shall track that as part of separate PR. |
@mapuri - looks good; one more follow-up. This would lock out the laptop users completely, now that there is no go binary to pick up from the host. i.e. entire dev environment is not within the VM anymore? Or, is it still available? |
I am not sure if I understand the usecase. The current change only affects the vagrant based setups. Without a workspace checkout on the laptop, the users are not able to do a 'vagrant up'. If they do checkout a workspace on their laptop, I would think they have go installed in their host (laptop) environment as well. Is that correct? In case users have their own VMs on the laptop, they will need to install go on the vms themselves. This should be similar to today as well. There is a third way (though rare I would think), where user checkouts the netplugin workspace on their laptop (without go), and use 'vagrant up' to manually bring up a vm. I think it will fail today because it tries to mount the GOPATH from host and will some changes to vagrantfile to just bring up the vm without mounting the workspace etc but in that case it just become like another vm and will fall back to the last case f user bringing up their own vm.
Having said above, the vagrant-box that we use still has the go binary etc, just that I have plugged it out of the PATH, so it is not available by default. |
I should have make it clearer. Is following true?
If yes, then we have made it difficult for laptop users to run more now. |
let's talk about it. I think you are asking about the last case I was pointing to. In that case all they are getting is a regular vm (by using the workspace to do 'vagrant up'), why won't they just have their own vm where they checkout the source and build? Also in this environment then they can at best test/run a single node with netplugin, etcd, ovs running on this vm itself. Even today I don't think they can build the netplugin binary in the vagrant vm as is because the GOPATH from host is mounted as read-only. |
Mount and use host's Go environment in the vagrant vm
* Add netprofile object * merge * netprofile * epg changes * Contains netprofile changes * Contains netprofile changes for contivmodel
This allows to relax the strict version check for host go version.
Fixes issue #30