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
This commit is contained in:
ricolin 2023-11-01 00:10:33 +08:00 committed by Vladimir Kozhukalov
parent 52cd767c84
commit dbceca760a
3 changed files with 7 additions and 2 deletions

View File

@ -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:

View File

@ -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

View File

@ -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
...