Bug 885932
| Summary: | quantum-node-setup fails to set libvirt_vif_driver with "--plugin openvswitch" | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Etsuji Nakai <enakai> | ||||
| Component: | openstack-quantum | Assignee: | Gary Kotton <gkotton> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 18 | CC: | apevec, breu, chrisw, gkotton, Jan.van.Eldik, jose.castro.leon, markmc, rkukura | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | |||||||
| : | 903304 (view as bug list) | Environment: | |||||
| Last Closed: | 2013-03-22 00:00:24 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
Currently updated with f18 packages openstack-quantum-2012.2.1-2.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/openstack-quantum-2012.2.1-2.fc18 Package openstack-quantum-2012.2.1-2.fc18: * should fix your issue, * was pushed to the Fedora 18 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing openstack-quantum-2012.2.1-2.fc18' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-1232/openstack-quantum-2012.2.1-2.fc18 then log in and leave karma (feedback). openstack-quantum-2012.2.3-2.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/openstack-quantum-2012.2.3-2.fc18 openstack-quantum-2012.2.3-2.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. |
Created attachment 661271 [details] Suggested patch for /usr/bin/quantum-node-setup Description of problem: "quantum-node-setup --plugin openvswitch" reports error as below: ----------- # quantum-node-setup --plugin openvswitch Quantum plugin: openvswitch Please enter the Quantum hostname: opst01 Would you like to update the nova configuration files? (y/n): y /usr/bin/openstack-config --set|--del config_file section [parameter] [value] Configuration updates complete! ----------- This is because LIBVIRT_VIF_DRIVER is not set for openvswitch. /usr/bin/quantum-node-setup ----------- 116 case "${QUANTUM_PLUGIN}" in 117 "linuxbridge") 118 LIBVIRT_VIF_DRIVER=nova.virt.libvirt.vif.QuantumLinuxBridgeVIFDrive r 119 ;; 120 121 "openvswitch") 122 if ! rpm -q openvswitch > /dev/null 123 then 124 echo "Please install openvswitch" 125 exit 0 126 fi 127 ;; 128 129 esac ----------- See the attachment for a suggested patch. By the way, I used "LibvirtHybridOVSBridgeDriver" in this patch. There may be another choice of driver, though. Version-Release number of selected component (if applicable): # rpm -q openstack-quantum openstack-quantum-2012.2.1-1.fc18.noarch