1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-28 02:37:11 +00:00

docs: use new custom rule format in worker config reference

Also, update the reference linking to the documentation of the custom
source to point to the customization guide.
This commit is contained in:
Markus Lehtonen 2022-01-25 10:11:50 +02:00
parent 04caec30c7
commit e3661bda30

View file

@ -408,20 +408,25 @@ With the example config above NFD would publish labels like:
List of rules to process in the custom feature source to create user-specific
labels. Refer to the documentation of the
[custom feature source](../get-started/features.html#custom) for details of
the available rules and their configuration.
[custom feature source](customization-guide.html#custom-feature-source) for
details of the available rules and their configuration.
Default: *empty*
Example:
```yaml
source:
sources:
custom:
- name: "my.custom.feature"
matchOn:
- loadedKMod: ["e1000e"]
- pciId:
class: ["0200"]
vendor: ["8086"]
- name: "my custom rule"
labels:
my-custom-feature: "true"
matchFeatures:
- feature: kernel.loadedmodule
matchExpressions:
e1000e: {op: Exists}
- feature: pci.device
matchExpressions:
class: {op: In, value: ["0200"]}
vendor: {op: In, value: ["8086"]}
```