From cf918fbc294be35f662d6b2851f3cdc00bc2b1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Sun, 15 Mar 2020 11:26:25 +0100 Subject: [PATCH] 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 --- ansible/roles/neutron/defaults/main.yml | 1 + releasenotes/notes/bug-1867506-3613746b8647cd73.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 releasenotes/notes/bug-1867506-3613746b8647cd73.yaml diff --git a/ansible/roles/neutron/defaults/main.yml b/ansible/roles/neutron/defaults/main.yml index fad3985828..5f024cf74f 100644 --- a/ansible/roles/neutron/defaults/main.yml +++ b/ansible/roles/neutron/defaults/main.yml @@ -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: diff --git a/releasenotes/notes/bug-1867506-3613746b8647cd73.yaml b/releasenotes/notes/bug-1867506-3613746b8647cd73.yaml new file mode 100644 index 0000000000..6bae317209 --- /dev/null +++ b/releasenotes/notes/bug-1867506-3613746b8647cd73.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + Fixes ``neutron-openvswitch-agent`` native ``openvswitch`` + firewall driver. + `LP#1867506 `__