1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00
node-feature-discovery/docs/reference/topology-updater-configuration-reference.md
Talor Itzhak d495376f06 docs: topology-updater: update docs for exclude-list feature
Update the docs with explanations and examples
about the exclude-list feature.

Signed-off-by: Talor Itzhak <titzhak@redhat.com>
2022-11-21 21:31:51 +02:00

1.1 KiB

title layout sort
Topology-Updater config reference default 5

Configuration file reference of nfd-topology-updater

{: .no_toc}

Table of contents

{: .no_toc .text-delta}

  1. TOC {:toc}

See the sample configuration file for a full example configuration.

excludeList

The excludeList specifies a key-value map of allocated resources that should not be examined by the topology-updater agent per node. Each key is a node name with a value as a list of resources that should not be examined by the agent for that specific node.

Default: empty

Example:

excludeList:
  nodeA: [hugepages-2Mi]
  nodeB: [memory]
  nodeC: [cpu, hugepages-2Mi]

excludeList.*

excludeList.* is a special value that use to specify all nodes. A resource that would be listed under this key, would be excluded from all nodes.

Default: empty

Example:

excludeList:
  '*': [hugepages-2Mi]