Skip to content
Snippets Groups Projects
Commit 3a94996b authored by Michal Nasiadka's avatar Michal Nasiadka
Browse files

ovn: Change order of deployment

ovn-controller should be deployed first according to OVN upgrade guide.
Since we are getting newer OVN/OVS versions from RDO/Ubuntu in a cycle,
let's apply that to deployment.

Closes-Bug: #1979329

Change-Id: I017aec611a057db1634cfc2634164b21cb210193
parent ae3de342
No related branches found
No related tags found
No related merge requests found
......@@ -602,27 +602,27 @@
tags: ovs-dpdk,
when: "(enable_openvswitch | bool) and (enable_ovs_dpdk | bool)"}
- name: Apply role ovn-db
- name: Apply role ovn-controller
gather_facts: false
hosts:
- ovn-nb-db
- ovn-northd
- ovn-sb-db
- ovn-controller
- '&enable_ovn_True'
serial: '{{ kolla_serial|default("0") }}'
roles:
- { role: ovn-db,
tags: [ovn, ovn-db] }
- { role: ovn-controller,
tags: [ovn, ovn-controller] }
- name: Apply role ovn-controller
- name: Apply role ovn-db
gather_facts: false
hosts:
- ovn-controller
- ovn-nb-db
- ovn-northd
- ovn-sb-db
- '&enable_ovn_True'
serial: '{{ kolla_serial|default("0") }}'
roles:
- { role: ovn-controller,
tags: [ovn, ovn-controller] }
- { role: ovn-db,
tags: [ovn, ovn-db] }
- name: Apply role neutron
gather_facts: false
......
---
fixes:
- |
Fixes OVN deployment order - as recommended in OVN docs.
`LP#1979329 <https://launchpad.net/bugs/1979329>`__
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