Merge "Build neutron-sriov-agent image when enabled"

This commit is contained in:
Zuul 2022-01-03 13:56:16 +00:00 committed by Gerrit Code Review
commit 2b24853862
2 changed files with 8 additions and 0 deletions

View File

@ -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-sriov-agent
enabled: "{{ kolla_enable_neutron_sriov | bool }}"
- regex: ^nova
enabled: "{{ kolla_enable_nova | bool }}"
- regex: ^octavia
@ -552,6 +554,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"

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes an issue where the Neutron SR-IOV agent image is not built when the
service is enabled.