diff --git a/neutron/Chart.yaml b/neutron/Chart.yaml index befe1ec0c8..70129ab86a 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.22 +version: 0.3.23 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/templates/bin/_neutron-server.sh.tpl b/neutron/templates/bin/_neutron-server.sh.tpl index 0954ea4ee6..8cbb688c5d 100644 --- a/neutron/templates/bin/_neutron-server.sh.tpl +++ b/neutron/templates/bin/_neutron-server.sh.tpl @@ -23,13 +23,13 @@ function start () { {{- if ( has "ovn" .Values.network.backend ) }} --config-file /tmp/pod-shared/ovn.ini \ {{- end }} -{{- if .Values.conf.plugins.taas.taas.enabled }} \ +{{- if .Values.conf.plugins.taas.taas.enabled }} --config-file /etc/neutron/taas_plugin.ini \ {{- end }} -{{- if ( has "sriov" .Values.network.backend ) }} \ +{{- if ( has "sriov" .Values.network.backend ) }} --config-file /etc/neutron/plugins/ml2/sriov_agent.ini \ {{- end }} -{{- if .Values.conf.plugins.l2gateway }} \ +{{- if .Values.conf.plugins.l2gateway }} --config-file /etc/neutron/l2gw_plugin.ini \ {{- end }} {{- if ( has "tungstenfabric" .Values.network.backend ) }} diff --git a/releasenotes/notes/neutron.yaml b/releasenotes/notes/neutron.yaml index 9aee23157b..ffead48e91 100644 --- a/releasenotes/notes/neutron.yaml +++ b/releasenotes/notes/neutron.yaml @@ -64,4 +64,5 @@ neutron: - 0.3.20 Add Ubuntu Jammy overrides - 0.3.21 Run native netns cleanup - 0.3.22 Add BGP Dragent support for running dragent agents as daemonsets + - 0.3.23 Fix start function template ...