Merge "ovn: Fix FQDN-based deployments"

This commit is contained in:
Zuul 2024-10-09 15:34:41 +00:00 committed by Gerrit Code Review
commit 51903effa6
2 changed files with 9 additions and 1 deletions

View File

@ -103,5 +103,5 @@ openvswitch_ovs_vsctl_wrapper_enabled: false
#############
openvswitch_system_id: "{{ ansible_facts.hostname }}"
openvswitch_hostname: "{{ ansible_facts.hostname }}"
openvswitch_hostname: "{{ ansible_facts.fqdn }}"
openvswitch_hw_offload: "no"

View File

@ -0,0 +1,8 @@
---
fixes:
- |
Fixes #2080552.
``openvswitch`` role will now set ``external-ids:hostname`` to
``{{ ansible_facts.fqdn }}`` instead of ``{{ ansible_facts.hostname }}``
due to Neutron using FQDN based hostnames in ``requested-chassis`` field.
`LP#2080552 <https://launchpad.net/bugs/2080552>`__