You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using openstack-vagrant-provider version 0.13.0, I am attempting to stand up infrastructure in a VMWare OpenStack Octa Environment. I am using Rake and Ruby's ENV to set my environment variables, but I seem to be running into issues with the provider getting the network information. See link for details.
namespace:vagrantdonamespace:osdodesc'Run Vagrant commands using the set variables.'task:cmd,[:command]do |_t,args|
ENV['VAGRANT_OPENSTACK_LOG']='debug'sh%( vagrant #{args.command} )endendend
I run into the same errors with gathering network information running
rake vagrant:os:cmd["openstack network-list"]
from. I have another Rake task file in my rakelib/ that sets all my ENV variables everytime I run the commands.
The text was updated successfully, but these errors were encountered:
FilBot3
changed the title
Errors getting network infrmation from VMWare OpenStack
Errors getting network infrmation from VMWare OpenStack Octa
Sep 17, 2018
confirm this issue. It appears that something in/around lib/vagrant-openstack-provider/client/neutron.rb:39:in `get_networks' is broken for the current API version
It seems that PR #343 addresses this issue.
This basically disables the ability to launch new instances if more than one network exists in this context.
Using
openstack-vagrant-provider
version0.13.0
, I am attempting to stand up infrastructure in a VMWare OpenStack Octa Environment. I am using Rake and Ruby's ENV to set my environment variables, but I seem to be running into issues with the provider getting the network information. See link for details.The Rake task looks like this
I run into the same errors with gathering network information running
rake vagrant:os:cmd["openstack network-list"]
from. I have another Rake task file in my
rakelib/
that sets all my ENV variables everytime I run the commands.The text was updated successfully, but these errors were encountered: