From a797e9f7053192ae7310f794657a6a4eb714d0e8 Mon Sep 17 00:00:00 2001 From: Mohamed Mahmoud Date: Wed, 18 Dec 2024 08:57:50 -0500 Subject: [PATCH] add netns volume mount to avoid agent warning when it starts 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