Merge "ovn: Change order of deployment"

This commit is contained in:
Zuul 2023-01-04 13:38:35 +00:00 committed by Gerrit Code Review
commit bea4535613
2 changed files with 15 additions and 10 deletions

View File

@ -602,6 +602,16 @@
tags: ovs-dpdk, tags: ovs-dpdk,
when: "(enable_openvswitch | bool) and (enable_ovs_dpdk | bool)"} when: "(enable_openvswitch | bool) and (enable_ovs_dpdk | bool)"}
- name: Apply role ovn-controller
gather_facts: false
hosts:
- ovn-controller
- '&enable_ovn_True'
serial: '{{ kolla_serial|default("0") }}'
roles:
- { role: ovn-controller,
tags: [ovn, ovn-controller] }
- name: Apply role ovn-db - name: Apply role ovn-db
gather_facts: false gather_facts: false
hosts: hosts:
@ -614,16 +624,6 @@
- { role: ovn-db, - { role: ovn-db,
tags: [ovn, ovn-db] } tags: [ovn, ovn-db] }
- name: Apply role ovn-controller
gather_facts: false
hosts:
- ovn-controller
- '&enable_ovn_True'
serial: '{{ kolla_serial|default("0") }}'
roles:
- { role: ovn-controller,
tags: [ovn, ovn-controller] }
- name: Apply role neutron - name: Apply role neutron
gather_facts: false gather_facts: false
hosts: hosts:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes OVN deployment order - as recommended in OVN docs.
`LP#1979329 <https://launchpad.net/bugs/1979329>`__