diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2021-05-18 15:16:03 -0700 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2021-05-19 15:29:23 -0700 |
commit | dfe47f2dedf8900303b3e6ccbcd926ac0820b442 (patch) | |
tree | f234d7bede03babef8e2a636d7d4591a12684f7f /kud/deployment_infra | |
parent | 59a703bb8c443c2b7d6b7cdab9e8448b944e5cf2 (diff) |
Mount /var/run as shared
This fixes the "unknown FS magic" error reported by nfn-agent:
E0518 22:05:58.596460 20593 cni.go:150] Failed to configure
interface in pod: failed to open netns
"/var/run/netns/cni-c24e4d8e-819c-6a0c-9ae5-6b4e5cf8f68d": unknown
FS magic on
"/var/run/netns/cni-c24e4d8e-819c-6a0c-9ae5-6b4e5cf8f68d": 1021994
It can be observed as a failure of the ovn4nfv.sh test when
CONTAINER_RUNTIME is "containerd".
Issue-ID: MULTICLOUD-1324
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: If979110d125511827a65a5de5101a2832d5efeb5
Diffstat (limited to 'kud/deployment_infra')
-rw-r--r-- | kud/deployment_infra/helm/ovn4nfv/templates/daemonset.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kud/deployment_infra/helm/ovn4nfv/templates/daemonset.yaml b/kud/deployment_infra/helm/ovn4nfv/templates/daemonset.yaml index bc8285f4..aeecb797 100644 --- a/kud/deployment_infra/helm/ovn4nfv/templates/daemonset.yaml +++ b/kud/deployment_infra/helm/ovn4nfv/templates/daemonset.yaml @@ -138,6 +138,7 @@ spec: name: host-var-run-ovs - mountPath: /var/run name: host-var-run + mountPropagation: Bidirectional - mountPath: /host/proc name: host-proc - mountPath: /host/sys |