From 6ae4b98eec6bd5ccd564b24a4b2f0f1f54822df5 Mon Sep 17 00:00:00 2001 From: ricolin Date: Thu, 2 Nov 2023 16:51:51 +0800 Subject: [PATCH] Disable DVR for OVN floating ip DVR with OVN floating ip is currently unstable and caused us a lot of network connectivity issues. This propose disable it as the default value (False) for `enable_distributed_floating_ip`. Change-Id: Ibcf49c331482336e1cbae76dfc2bde86962e350e --- neutron/Chart.yaml | 2 +- neutron/values.yaml | 1 - releasenotes/notes/neutron.yaml | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neutron/Chart.yaml b/neutron/Chart.yaml index 7676861855..d201a19a57 100644 --- a/neutron/Chart.yaml +++ b/neutron/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Neutron name: neutron -version: 0.3.28 +version: 0.3.29 home: https://docs.openstack.org/neutron/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Neutron/OpenStack_Project_Neutron_vertical.png sources: diff --git a/neutron/values.yaml b/neutron/values.yaml index 1c68673aa7..747baa53e1 100644 --- a/neutron/values.yaml +++ b/neutron/values.yaml @@ -1834,7 +1834,6 @@ conf: oslo_policy: policy_file: /etc/neutron/policy.yaml ovn: - enable_distributed_floating_ip: true ovn_metadata_enabled: true nova: auth_type: password diff --git a/releasenotes/notes/neutron.yaml b/releasenotes/notes/neutron.yaml index c401ba785f..2ae3c84419 100644 --- a/releasenotes/notes/neutron.yaml +++ b/releasenotes/notes/neutron.yaml @@ -70,4 +70,5 @@ neutron: - 0.3.26 Fix ovs options to allow multiple options - 0.3.27 Move old overrides from the tools directory - 0.3.28 Fix ovn for slow enviroment + - 0.3.29 Disable DVR for OVN floating ip ...