<div dir="ltr"><div>Got a tip which fixed the issue (and fixed an oversight in my config). <br><br></div>PHYSICAL_NETWORK=physnet1<br>OVS_PHYSICAL_BRIDGE=br-ex<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 9 March 2015 at 17:41, Wojciech Dec <span dir="ltr"><<a href="mailto:wdec.ietf@gmail.com" target="_blank">wdec.ietf@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Hi All,<br><br></div>I'm trying to run a relatively simple devstack based test for Openstack Icehouse using OVS with ML2 driver and provider vlans all on Ubuntu 14.04. <br>Unfortunately, the VMs won't start with the following error thrown by nova. I've tried all the fixes I was able to find from previous posts, to no avail so far. Would appreciate any additional insights into what's the root issue here. My local.conf is provided below.<br><br><br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]     disk_info, rescue, block_device_info)<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]   File "/opt/stack/nova/nova/virt/libvirt/driver.py", line 3303, in get_guest_config<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]     flavor)<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]   File "/opt/stack/nova/nova/virt/libvirt/vif.py", line 400, in get_config<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]     _("Unexpected vif_type=%s") % vif_type)<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] NovaException: Unexpected vif_type=binding_failed<br>2015-03-09 09:30:26.191 TRACE nova.compute.manager [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] <br>2015-03-09 09:30:26.193 DEBUG nova.compute.utils [req-707f088f-49b4-45a1-bb51-b961c60b2080 admin admin] [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] Build of instance 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f was re-scheduled: Unexpected vif_type=binding_failed from (pid=27454) notify_about_instance_usage /opt/stack/nova/nova/compute/utils.py:336<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] Traceback (most recent call last):<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]   File "/opt/stack/nova/nova/compute/manager.py", line 1218, in _run_instance<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]     instance, image_meta, legacy_bdm_in_spec)<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]   File "/opt/stack/nova/nova/compute/manager.py", line 1388, in _build_instance<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f]     reason=unicode(exc_info[1]))<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] RescheduledException: Build of instance 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f was re-scheduled: Unexpected vif_type=binding_failed<br>2015-03-09 09:30:26.193 TRACE nova.compute.utils [instance: 9f8ff0ff-28bb-4e06-84b6-4931e691fc1f] <br><br>[[local|localrc]]<br>LOGFILE=stack.sh.log<br>GIT_BASE=<a href="http://github.com" target="_blank">http://github.com</a><br># Logging Section<br>SCREEN_LOGDIR=/opt/stack/data/log<br>LOG_COLOR=True<br>VERBOSE=True<br>OFFLINE=True<br>#RECLONE=yes<br> <br>#enable_service rabbit<br>#disable_service qpid<br>enable_service n-cpu<br>#enable_service n-cond<br>disable_service n-net<br>enable_service q-svc<br>enable_service q-dhcp<br>enable_service q-l3<br>enable_service q-meta<br>enable_service q-agt<br>enable_service quantum<br>enable_service tempest<br>enable_service neutron<br>disable_service swift s-proxy s-object s-container s-account<br>disable_service cinder c-sch c-api c-vol<br>enable_service horizon<br><br>HOST_NAME=ubuntu1<br>SERVICE_HOST_NAME=${HOST_NAME}<br>SERVICE_HOST=10.194.126.143 <br>Q_HOST=$SERVICE_HOST<br>HOST_IP=10.194.126.143<br> <br>Q_PLUGIN=ml2<br>Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge,logger<br>Q_ML2_PLUGIN_TYPE_DRIVERS=vlan,flat,local<br>ML2_VLAN_RANGES=physnet1:2000:2999<br>ENABLE_TENANT_VLANS=True<br>MUTLI_HOST=False<br>PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-} <br>OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:-} <br>Q_USE_SECGROUP=False<br> <br>VNCSERVER_PROXYCLIENT_ADDRESS=10.194.126.143<br>VNCSERVER_LISTEN=0.0.0.0<br> <br>MYSQL_HOST=$SERVICE_HOST<br>RABBIT_HOST=$SERVICE_HOST<br>GLANCE_HOSTPORT=$SERVICE_HOST:9292<br>KEYSTONE_AUTH_HOST=$SERVICE_HOST<br>KEYSTONE_SERVICE_HOST=$SERVICE_HOST<br> <br>MYSQL_PASSWORD=xxx<br>RABBIT_PASSWORD=xxx<br>QPID_PASSWORD=xxx<br>SERVICE_TOKEN=xxx<br>SERVICE_PASSWORD=xxx<br>ADMIN_PASSWORD=xxx<br><br>GLANCE_BRANCH=stable/icehouse<br>HORIZON_BRANCH=stable/icehouse<br>KEYSTONE_BRANCH=stable/icehouse<br>NOVA_BRANCH=stable/icehouse<br>NEUTRON_BRANCH=stable/icehouse<br>TEMPEST_BRANCH=stable/icehouse<br><br></div>Thanks.<br><div><br></div></div>
</blockquote></div><br></div>