From 713b65f4238360c3958fb6252a27d97629e3ab9d Mon Sep 17 00:00:00 2001 From: rabi Date: Mon, 18 Jun 2018 15:51:01 +0530 Subject: [PATCH] Install networking-ansible ML2 driver in neutron base images The ML2 mechanism driver[1] is installed in the neutron-base image when building from source. [1] http://git.openstack.org/cgit/openstack/networking-ansible Change-Id: Ic9088a1aab9b6618fa9532659da02dfae198be54 (cherry picked from commit ccbbba7b70ecadd5b59d6e23b6dd9a4db1f3090e) --- kolla/common/config.py | 4 ++++ .../notes/add-networking-ansible-b27128f544f300e6.yaml | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 releasenotes/notes/add-networking-ansible-b27128f544f300e6.yaml diff --git a/kolla/common/config.py b/kolla/common/config.py index 79664cfc4b..34b1ed664b 100755 --- a/kolla/common/config.py +++ b/kolla/common/config.py @@ -530,6 +530,10 @@ SOURCES = { 'type': 'url', 'location': ('$tarballs_base/neutron-fwaas/' 'neutron-fwaas-12.0.1.tar.gz')}, + 'neutron-base-plugin-networking-ansible': { + 'type': 'url', + 'location': ('$tarballs_base/networking-ansible/' + 'networking-ansible-0.1.0.tar.gz')}, 'neutron-base-plugin-networking-baremetal': { 'type': 'url', 'location': ('$tarballs_base/networking-baremetal/' diff --git a/releasenotes/notes/add-networking-ansible-b27128f544f300e6.yaml b/releasenotes/notes/add-networking-ansible-b27128f544f300e6.yaml new file mode 100644 index 0000000000..7708a8781a --- /dev/null +++ b/releasenotes/notes/add-networking-ansible-b27128f544f300e6.yaml @@ -0,0 +1,5 @@ +--- +features: + - Add support for networking-ansible. Installs networking-ansible ML2 driver in the neutron + base image when building from source. Binary users can use ``neutron_server_packages_append`` + to include ``python-networking-ansible`` when building neutron-server image.