From af5745aa4399c37cff6d688884100a78721ea3a9 Mon Sep 17 00:00:00 2001 From: Gaurav Ghildiyal Date: Wed, 20 Aug 2025 17:28:25 -0700 Subject: [PATCH] fix: Typo in interface name for docker - should be docker0 --- pkg/inventory/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/inventory/db.go b/pkg/inventory/db.go index b2937e3d..a206d049 100644 --- a/pkg/inventory/db.go +++ b/pkg/inventory/db.go @@ -46,7 +46,7 @@ const ( var ( // ignoredInterfaceNames is a set of network interface names that are typically // created by CNI plugins or are otherwise not relevant for DRA resource exposure. - ignoredInterfaceNames = sets.New("cilium_net", "cilium_host", "docker") + ignoredInterfaceNames = sets.New("cilium_net", "cilium_host", "docker0") ) type DB struct {