From 245f6a0402481ae92ee84df34b56a61f24befec1 Mon Sep 17 00:00:00 2001 From: "Mohamed S. Mahmoud" Date: Thu, 19 Dec 2024 07:51:44 -0500 Subject: [PATCH] add netns volume mount to avoid agent warning when it starts (#142) Signed-off-by: Mohamed Mahmoud --- res/flow-capture.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/res/flow-capture.yml b/res/flow-capture.yml index 2c2d97da..0e2564c7 100644 --- a/res/flow-capture.yml +++ b/res/flow-capture.yml @@ -131,6 +131,9 @@ spec: - name: var-run-ovs mountPath: /var/run/openvswitch mountPropagation: Bidirectional + - name: var-run-netns + mountPath: /var/run/netns + mountPropagation: Bidirectional volumes: - name: bpf-kernel-debug hostPath: @@ -144,3 +147,7 @@ spec: hostPath: path: /var/run/openvswitch type: DirectoryOrCreate + - name: var-run-netns + hostPath: + path: /var/run/netns + type: Directory