Make template ovn_chassis_mac_map backwards-compatible

Related-Bug: #1881593
Change-Id: If11f21c05a795108d76a3d210e2ebf11d7114c50
(cherry picked from commit 528888a664)
This commit is contained in:
Kamil Sambor 2021-10-13 12:12:48 +02:00 committed by Brent Eagles
parent 1e12521e0a
commit 8a1ffcee89
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
{% if ovn_bridge_mac_address_vars is defined %}
{{ ovn_bridge_mac_address_vars[inventory_hostname] | default({}) | to_nice_json }}
{% else %}
{{ hostvars[inventory_hostname]['ovn_chassis_mac_map'] | default({}) | to_nice_json }}
{% set ovn_chassis_mac_map_data = {} %}
{% set _ = ovn_chassis_mac_map_data.__setitem__('ovn_chassis_mac_map', hostvars[inventory_hostname].get('ovn_chassis_mac_map', {})) %}
{{ ovn_chassis_mac_map_data | to_nice_json }}
{% endif %}