Fixes OVN docker image prep with Neutron

Currently if one passes the OVN env file to generate the SDN docker
images, neutron server will not be generated because OVN service is
missing in the service list. This patch addresses that and brings it
inline with the behavior of other SDNs (like ODL) where the Neutron
Server image is specific to that SDN and requires generating.

Change-Id: Ic08ff58b10d4fa7116163be1f7fce57879cee8c5
Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
Tim Rozet 2018-08-27 15:20:13 -04:00 committed by Alex Schultz
parent e4fb2f78f0
commit 0fd1b98b3c
2 changed files with 6 additions and 0 deletions

View File

@ -540,6 +540,7 @@ container_images_template:
services:
- OS::TripleO::Services::NeutronApi
- OS::TripleO::Services::NeutronServer
- OS::TripleO::Services::OVNController
- imagename: "{{namespace}}/{{name_prefix}}neutron-metadata-agent-ovn{{name_suffix}}:{{tag}}"
image_source: kolla

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Preparing docker image containers with just OVN now also generates the
corresponding Neutron Server OVN docker image.