From a669ccfa26c430ef634efa1f2e85a1b68b534ccd Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Wed, 6 Oct 2021 12:40:44 +0100 Subject: [PATCH] Build neutron-sriov-agent image when enabled Set kolla_enable_neutron_sriov, and the neutron-sriov-agent image does not get built. This change fixes the issue. Story: 2009275 Task: 43530 Change-Id: Ide13ad5d39388a3d484bb0285adf49e978239515 --- ansible/group_vars/all/kolla | 3 +++ releasenotes/notes/build-neutron-sriov-836acf378bae0b48.yaml | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 releasenotes/notes/build-neutron-sriov-836acf378bae0b48.yaml diff --git a/ansible/group_vars/all/kolla b/ansible/group_vars/all/kolla index 56ce7319f..fd132b661 100644 --- a/ansible/group_vars/all/kolla +++ b/ansible/group_vars/all/kolla @@ -202,6 +202,8 @@ overcloud_container_image_regex_map: enabled: "{{ kolla_enable_neutron | bool }}" - regex: neutron-mlnx-agent enabled: "{{ kolla_enable_neutron_mlnx | bool }}" + - regex: neutron-sriov-agent + enabled: "{{ kolla_enable_neutron_sriov | bool }}" - regex: ^nova enabled: "{{ kolla_enable_nova | bool }}" - regex: ^octavia @@ -556,6 +558,7 @@ kolla_enable_multipathd: "no" kolla_enable_murano: "no" kolla_enable_neutron_mlnx: "no" kolla_enable_neutron_provider_networks: "no" +kolla_enable_neutron_sriov: "no" kolla_enable_octavia: "no" kolla_enable_openvswitch: "{{ kolla_enable_neutron | bool }}" kolla_enable_ovn: "no" diff --git a/releasenotes/notes/build-neutron-sriov-836acf378bae0b48.yaml b/releasenotes/notes/build-neutron-sriov-836acf378bae0b48.yaml new file mode 100644 index 000000000..a1a5c5ecc --- /dev/null +++ b/releasenotes/notes/build-neutron-sriov-836acf378bae0b48.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes an issue where the Neutron SR-IOV agent image is not built when the + service is enabled.