Skip to content
Snippets Groups Projects
Commit 1284a1b7 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Don't configure external bridge on computes if DVR is disabled"

parents 5dedf0d0 198ecb74
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,9 @@ ...@@ -34,6 +34,9 @@
command: docker exec openvswitch_db /usr/local/bin/kolla_ensure_openvswitch_configured {{ item.0 }} {{ item.1 }} command: docker exec openvswitch_db /usr/local/bin/kolla_ensure_openvswitch_configured {{ item.0 }} {{ item.1 }}
register: status register: status
changed_when: status.stdout.find('changed') != -1 changed_when: status.stdout.find('changed') != -1
when:
- inventory_hostname in groups["network"]
or (inventory_hostname in groups["compute"] and enable_neutron_dvr | bool)
with_together: with_together:
- "{{ neutron_bridge_name.split(',') }}" - "{{ neutron_bridge_name.split(',') }}"
- "{{ neutron_external_interface.split(',') }}" - "{{ neutron_external_interface.split(',') }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment