From dbceca760a2b2b837718e9b09df17c39a93c64c8 Mon Sep 17 00:00:00 2001 From: ricolin Date: Wed, 1 Nov 2023 00:10:33 +0800 Subject: [PATCH] fix(ovn): enable dependency to handle slow envs With these missing flags, the Helm deploy would finish but the services would not be functional, causing the jobs to fail. Change-Id: If0f6447945552fe6aedace45562e27efcab9a534 --- neutron/Chart.yaml | 2 +- neutron/values.yaml | 6 +++++- releasenotes/notes/neutron.yaml | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/neutron/Chart.yaml b/neutron/Chart.yaml index 3eb3493428..7676861855 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.27 +version: 0.3.28 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 a7ba61b928..1c68673aa7 100644 --- a/neutron/values.yaml +++ b/neutron/values.yaml @@ -162,7 +162,9 @@ dependencies: sriov: {} l2gateway: {} bagpipe_bgp: {} - ovn: {} + ovn: + server: + pod: null bgp_dragent: {} openvswitch: dhcp: @@ -296,6 +298,8 @@ dependencies: services: - endpoint: internal service: compute_metadata + - endpoint: internal + service: network ovs_agent: jobs: - neutron-rabbit-init diff --git a/releasenotes/notes/neutron.yaml b/releasenotes/notes/neutron.yaml index d12706bb60..c401ba785f 100644 --- a/releasenotes/notes/neutron.yaml +++ b/releasenotes/notes/neutron.yaml @@ -69,4 +69,5 @@ neutron: - 0.3.25 Fix ovs member support for readiness - 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 ...