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.