1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Remove 'nfd' label prefix from README and demos, too

This commit is contained in:
Markus Lehtonen 2018-11-30 10:10:02 +02:00
parent 4053010dd9
commit a1e60ba92b
3 changed files with 15 additions and 15 deletions

View file

@ -102,7 +102,7 @@ The published node labels encode a few pieces of information:
Feature label names adhere to the following pattern: Feature label names adhere to the following pattern:
``` ```
<namespace>/nfd-<source name>-<feature name>[.<attribute name>] <namespace>/<source name>-<feature name>[.<attribute name>]
``` ```
The last component (i.e. `attribute-name`) is optional, and only used if a The last component (i.e. `attribute-name`) is optional, and only used if a
feature logically has sub-hierarchy, e.g. `sriov.capable` and feature logically has sub-hierarchy, e.g. `sriov.capable` and
@ -114,17 +114,17 @@ the only label value published for features is the string `"true"`._
```json ```json
{ {
"feature.node.kubernetes.io/node-feature-discovery.version": "v0.3.0", "feature.node.kubernetes.io/node-feature-discovery.version": "v0.3.0",
"feature.node.kubernetes.io/nfd-cpuid-<feature-name>": "true", "feature.node.kubernetes.io/cpuid-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-iommu-<feature-name>": "true", "feature.node.kubernetes.io/iommu-<feature-name>": "true",
"feature.node.kubernetes.io/kernel-config.<option-name>": "true", "feature.node.kubernetes.io/kernel-config.<option-name>": "true",
"feature.node.kubernetes.io/nfd-kernel-version.<version component>": "<version number>", "feature.node.kubernetes.io/kernel-version.<version component>": "<version number>",
"feature.node.kubernetes.io/nfd-memory-<feature-name>": "true", "feature.node.kubernetes.io/memory-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-network-<feature-name>": "true", "feature.node.kubernetes.io/network-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-pci-<device label>.present": "true", "feature.node.kubernetes.io/pci-<device label>.present": "true",
"feature.node.kubernetes.io/nfd-pstate-<feature-name>": "true", "feature.node.kubernetes.io/pstate-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-rdt-<feature-name>": "true", "feature.node.kubernetes.io/rdt-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-selinux-<feature-name>": "true", "feature.node.kubernetes.io/selinux-<feature-name>": "true",
"feature.node.kubernetes.io/nfd-storage-<feature-name>": "true", "feature.node.kubernetes.io/storage-<feature-name>": "true",
"feature.node.kubernetes.io/<hook name>-<feature name>": "<feature value>" "feature.node.kubernetes.io/<hook name>-<feature name>": "<feature value>"
} }
``` ```
@ -262,7 +262,7 @@ The set of fields used in `<device label>` is configurable, valid fields being
Defaults fields are `class` and `vendor`. An example label using the default Defaults fields are `class` and `vendor`. An example label using the default
label fields: label fields:
``` ```
feature.node.kubernetes.io/nfd-pci-1200_8086.present=true feature.node.kubernetes.io/pci-1200_8086.present=true
``` ```
Also the set of PCI device classes that the feature source detects is Also the set of PCI device classes that the feature source detects is
@ -438,7 +438,7 @@ spec:
- image: golang - image: golang
name: go1 name: go1
nodeSelector: nodeSelector:
feature.node.kubernetes.io/nfd-pstate-turbo: 'true' feature.node.kubernetes.io/pstate-turbo: 'true'
``` ```
For more details on targeting nodes, see [node selection][node-sel]. For more details on targeting nodes, see [node selection][node-sel].

View file

@ -11,7 +11,7 @@ metadata:
{ {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "feature.node.kubernetes.io/nfd-pstate-turbo", "key": "feature.node.kubernetes.io/pstate-turbo",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]

View file

@ -10,5 +10,5 @@ spec:
- containerPort: 3351 - containerPort: 3351
hostPort: 10001 hostPort: 10001
nodeSelector: nodeSelector:
feature.node.kubernetes.io/nfd-pstate-turbo: 'true' feature.node.kubernetes.io/pstate-turbo: 'true'
restartPolicy: Never restartPolicy: Never