fix: ovs support member

OVS 2.15 changed terminology slave to member.
This change reflect that change.

Change-Id: If100748f9dc7083406b8004d0066673b54159b2c
This commit is contained in:
ricolin 2023-10-31 23:15:34 +08:00
parent c987d4a3a0
commit 5a4ab112c8
3 changed files with 3 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.24
version: 0.3.25
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

@ -38,7 +38,7 @@ ovs-vsctl list-br | grep -q br-int
bond={{ .name }}
ovs-appctl -t ${OVS_CTL} bond/list | grep -q ${bond}
{{- range .nics }}
ovs-appctl -t ${OVS_CTL} bond/show ${bond} | grep -q "slave {{ .name }}"
ovs-appctl -t ${OVS_CTL} bond/show ${bond} | grep -q "slave {{ .name }}\|member {{ .name }}"
{{- end }}
{{- end }}
{{- end }}

View File

@ -66,4 +66,5 @@ neutron:
- 0.3.22 Add BGP Dragent support for running dragent agents as daemonsets
- 0.3.23 Fix start function template
- 0.3.24 Add 2023.2 Ubuntu Jammy overrides
- 0.3.25 Fix ovs member support for readiness
...