From 82eba749de453d56a970d64b4f98a6848ce6e1cf Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Mon, 30 Oct 2023 15:09:38 +0000 Subject: [PATCH] Support building Neutron OVN agent image Change-Id: I12ad980ef6d30ea98966c0f4eaf047e8d57a40e7 Closes-Bug: #2039558 --- ansible/inventory/group_vars/all/kolla | 2 ++ .../notes/neutron-ovn-agent-build-efe14f23ab8db0d5.yaml | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 releasenotes/notes/neutron-ovn-agent-build-efe14f23ab8db0d5.yaml diff --git a/ansible/inventory/group_vars/all/kolla b/ansible/inventory/group_vars/all/kolla index bdd8f3c7e..225fe0573 100644 --- a/ansible/inventory/group_vars/all/kolla +++ b/ansible/inventory/group_vars/all/kolla @@ -205,6 +205,8 @@ overcloud_container_image_regex_map: enabled: "{{ kolla_enable_neutron | bool }}" - regex: neutron-mlnx-agent enabled: "{{ kolla_enable_neutron_mlnx | bool }}" + - regex: neutron-ovn-agent + enabled: "{{ kolla_enable_neutron | bool and kolla_enable_ovn | bool }}" - regex: neutron-sriov-agent enabled: "{{ kolla_enable_neutron_sriov | bool }}" - regex: ^nova diff --git a/releasenotes/notes/neutron-ovn-agent-build-efe14f23ab8db0d5.yaml b/releasenotes/notes/neutron-ovn-agent-build-efe14f23ab8db0d5.yaml new file mode 100644 index 000000000..5c1adb3c6 --- /dev/null +++ b/releasenotes/notes/neutron-ovn-agent-build-efe14f23ab8db0d5.yaml @@ -0,0 +1,6 @@ +--- +features: + - | + Adds support for building the ``neutron-ovn-agent`` image when Neutron and + OVN are enabled. `LP#2039558 + `__