From c08e14ce7a2a1ff0cbb13c364520f350d0b43371 Mon Sep 17 00:00:00 2001 From: Ivan Milchev Date: Fri, 6 Oct 2023 11:49:04 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20fs=20scan=20for=20v9=20(#8?= =?UTF-8?q?79)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ivan Milchev --- controllers/nodes/resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/nodes/resources.go b/controllers/nodes/resources.go index a6bbaafeb..6dba9d903 100644 --- a/controllers/nodes/resources.go +++ b/controllers/nodes/resources.go @@ -355,7 +355,7 @@ func Inventory(node corev1.Node, integrationMRN, clusterUID string, m v1alpha2.M } if feature_flags.GetEnableV9() { - inv.Spec.Assets[0].Connections[0].Type = "fs" + inv.Spec.Assets[0].Connections[0].Type = "filesystem" } else { inv.Spec.Assets[0].Connections[0].Backend = inventory.ProviderType_FS }