mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
source/network: Ignore bonding_masters interface during scanning
On Talos OS NFD logs constantly show errors related to the network attributes of bonding_masters. Closes: 1842 Signed-off-by: Oleg Zhurakivskyy <oleg.zhurakivskyy@intel.com>
This commit is contained in:
parent
1fa31a5d32
commit
21395cb5c3
1 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"slices"
|
||||
"strconv"
|
||||
"strings"
|
||||
"syscall"
|
||||
|
@ -129,6 +130,10 @@ func detectNetDevices() ([]nfdv1alpha1.InstanceFeature, []nfdv1alpha1.InstanceFe
|
|||
return nil, nil, fmt.Errorf("failed to list network interfaces: %w", err)
|
||||
}
|
||||
|
||||
ifaces = slices.DeleteFunc(ifaces, func(iface os.DirEntry) bool {
|
||||
return iface.Name() == "bonding_masters"
|
||||
})
|
||||
|
||||
// Iterate over devices
|
||||
devIfacesinfo := make([]nfdv1alpha1.InstanceFeature, 0, len(ifaces))
|
||||
virtualIfacesinfo := make([]nfdv1alpha1.InstanceFeature, 0, len(ifaces))
|
||||
|
|
Loading…
Reference in a new issue