Image "neutron-ovn-agent" is not being built
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
kayobe |
New
|
Undecided
|
Unassigned |
Bug Description
image "neutron-ovn-agent" is not being built although I've set "kolla_enable_ovn" to true and my environment seems to need this image.
contents from "ansible/
...
- regex: ^ovn
enabled: "{{ kolla_enable_ovn | bool }}"
...
- regex: neutron-server
enabled: "{{ kolla_enable_
- regex: "neutron-
enabled: "{{ kolla_enable_
- regex: neutron-mlnx-agent
enabled: "{{ kolla_enable_
- regex: neutron-sriov-agent
enabled: "{{ kolla_enable_
...
I don't see this adding the correct regex, so I added this to the file:
- regex: neutron-ovn-agent
enabled: "{{ kolla_enable_ovn | bool }}"
at least it builds the neutron-ovn-agent image now...
am I doing something wrong or is this missing?