Libvirt needs openvswitch to connect br-int

Libvirt is trying to create a port on br-int and is
failing because ovs is not installed.

Co-authored-by: Ian Main <imain@redhat.com>
Closes-bug: 1552717

Conflicts:
	docker/nova/nova-base/Dockerfile.j2
Change-Id: I6ed0c1ae5b27b58e4c22bcbe7e674f66cde48990
This commit is contained in:
Ryan Hallisey 2016-03-03 02:39:47 -05:00 committed by SamYaple
parent 88927b030d
commit a126b5fddf
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ RUN yum -y install \
python-cinderclient \
python-nova \
bridge-utils \
openvswitch \
&& yum clean all
{% endif %}
@ -17,6 +18,7 @@ RUN yum -y install \
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install bridge-utils \
openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}