Merge "fix: ovn-metadata-agent '/run/netns' mountPropagation overrides by parent directory."

This commit is contained in:
Zuul 2024-01-04 13:25:10 +00:00 committed by Gerrit Code Review
commit 465e7b94fd
3 changed files with 6 additions and 5 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Neutron
name: neutron
version: 0.3.30
version: 0.3.31
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

@ -141,8 +141,8 @@ spec:
command:
- /tmp/neutron-ovn-metadata-agent.sh
volumeMounts:
- name: run
mountPath: /run
- name: run-openvswitch
mountPath: /run/openvswitch
- name: pod-tmp
mountPath: /tmp
- name: pod-var-neutron
@ -215,9 +215,9 @@ spec:
emptyDir: {}
- name: pod-var-neutron
emptyDir: {}
- name: run
- name: run-openvswitch
hostPath:
path: /run
path: /run/openvswitch
- name: neutron-bin
configMap:
name: neutron-bin

View File

@ -72,4 +72,5 @@ neutron:
- 0.3.28 Fix ovn for slow enviroment
- 0.3.29 Disable DVR for OVN floating ip
- 0.3.30 Fix designate auth url
- 0.3.31 FIX ovn-metadata-agent mountPropagation overrides by parent directory
...