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

mountPropagation:
`None`(default) - This volume mount will not receive any subsequent mounts that are mounted to this volume or any of its subdirectories by the host.

Change-Id: I51500c406a3cae879d01dfff92ca91f30bbcb29f
This commit is contained in:
hailu 2023-12-29 09:58:16 +08:00 committed by Vladimir Kozhukalov
parent 0be32dd415
commit 7b2766b9d2
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
...