Fix native openvswitch firewall driver in neutron-openvswitch-agent

ovs-ofctl is still being run by neutron-openvswitch-agent.
Potential removal is scheduled for Victoria.
Until then, we have to mount /run/openvswitch in there.

Change-Id: Ia73b5665cece523bb822f6a223335f6fae94fb6a
Closes-bug: #1867506
This commit is contained in:
Radosław Piliszek 2020-03-15 11:26:25 +01:00
parent c63722f32a
commit cf918fbc29
2 changed files with 7 additions and 0 deletions

View File

@ -277,6 +277,7 @@ neutron_openvswitch_agent_default_volumes:
- "{{ node_config_directory }}/neutron-openvswitch-agent/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "/lib/modules:/lib/modules:ro"
- "/run/openvswitch:/run/openvswitch:shared"
- "kolla_logs:/var/log/kolla/"
- "{{ kolla_dev_repos_directory ~ '/neutron/neutron:/var/lib/kolla/venv/lib/python' ~ distro_python_version ~ '/site-packages/neutron' if neutron_dev_mode | bool else '' }}"
neutron_server_default_volumes:

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes ``neutron-openvswitch-agent`` native ``openvswitch``
firewall driver.
`LP#1867506 <https://launchpad.net/bugs/1867506>`__