From f38cd06866111369b62d71406997c7c0895bb34b Mon Sep 17 00:00:00 2001 From: Sam Yaple Date: Fri, 19 May 2017 16:58:01 +0000 Subject: [PATCH] Add openvswitch binaries to nova Nova calls the openvswitch binary when neutron is using the openvswitch driver to attach the port to the vswitch. This is not a known config ahead of time and is dependant on a change in the neutron services. This is an exception to the rule that can be removed if and when nova switches to python ovs Change-Id: I30d8251eec2e21b8181f8902d7899f8339ced6a1 --- centos/Dockerfile | 1 + debian/Dockerfile | 1 + ubuntu/Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/centos/Dockerfile b/centos/Dockerfile index a2ba70a..b3b087b 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -16,6 +16,7 @@ RUN set -x \ && yum install -y git \ libvirt0 \ libxml2 \ + openvswitch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \ diff --git a/debian/Dockerfile b/debian/Dockerfile index 01a24cb..717c35c 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -18,6 +18,7 @@ RUN set -x \ ca-certificates \ libvirt0 \ libxml2 \ + openvswitch-switch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \ diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 352dd9a..8830751 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -18,6 +18,7 @@ RUN set -x \ ca-certificates \ libvirt0 \ libxml2 \ + openvswitch-switch \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \