1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-31 04:04:51 +00:00

Merge pull request from marquiz/devel/sources-flag

nfd-worker: add special handling for --sources=all
This commit is contained in:
Kubernetes Prow Robot 2020-11-22 01:53:33 -08:00 committed by GitHub
commit 83e2a9defb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 36 additions and 19 deletions

View file

@ -90,8 +90,9 @@ func argsParse(argv []string) (worker.Args, error) {
--server-name-override=<name> Name (CN) expect from server certificate, useful --server-name-override=<name> Name (CN) expect from server certificate, useful
in testing in testing
[Default: ] [Default: ]
--sources=<sources> Comma separated list of feature sources. --sources=<sources> Comma separated list of feature sources. Special
[Default: cpu,custom,iommu,kernel,local,memory,network,pci,storage,system,usb] value 'all' enables all feature sources.
[Default: all]
--no-publish Do not publish discovered features to the --no-publish Do not publish discovered features to the
cluster-local Kubernetes API server. cluster-local Kubernetes API server.
--label-whitelist=<pattern> Regular expression to filter label names to --label-whitelist=<pattern> Regular expression to filter label names to

View file

@ -23,7 +23,7 @@ import (
. "github.com/smartystreets/goconvey/convey" . "github.com/smartystreets/goconvey/convey"
) )
var allSources = []string{"cpu", "custom", "iommu", "kernel", "local", "memory", "network", "pci", "storage", "system", "usb"} var allSources = []string{"all"}
func TestArgsParse(t *testing.T) { func TestArgsParse(t *testing.T) {
Convey("When parsing command line arguments", t, func() { Convey("When parsing command line arguments", t, func() {

View file

@ -222,8 +222,6 @@ Command line flags of nfd-worker:
```bash ```bash
$ docker run --rm ${NFD_CONTAINER_IMAGE} nfd-worker --help $ docker run --rm ${NFD_CONTAINER_IMAGE} nfd-worker --help
... ...
nfd-worker.
Usage: Usage:
nfd-worker [--no-publish] [--sources=<sources>] [--label-whitelist=<pattern>] nfd-worker [--no-publish] [--sources=<sources>] [--label-whitelist=<pattern>]
[--oneshot | --sleep-interval=<seconds>] [--config=<path>] [--oneshot | --sleep-interval=<seconds>] [--config=<path>]
@ -253,8 +251,9 @@ nfd-worker.
--server-name-override=<name> Name (CN) expect from server certificate, useful --server-name-override=<name> Name (CN) expect from server certificate, useful
in testing in testing
[Default: ] [Default: ]
--sources=<sources> Comma separated list of feature sources. --sources=<sources> Comma separated list of feature sources. Special
[Default: cpu,custom,iommu,kernel,local,memory,network,pci,storage,system,usb] value 'all' enables all feature sources.
[Default: all]
--no-publish Do not publish discovered features to the --no-publish Do not publish discovered features to the
cluster-local Kubernetes API server. cluster-local Kubernetes API server.
--label-whitelist=<pattern> Regular expression to filter label names to --label-whitelist=<pattern> Regular expression to filter label names to
@ -266,6 +265,7 @@ nfd-worker.
--sleep-interval=<seconds> Time to sleep between re-labeling. Non-positive --sleep-interval=<seconds> Time to sleep between re-labeling. Non-positive
value implies no re-labeling (i.e. infinite value implies no re-labeling (i.e. infinite
sleep). [Default: 60s] sleep). [Default: 60s]
``` ```
**NOTE** Some feature sources need certain directories and/or files from the **NOTE** Some feature sources need certain directories and/or files from the

View file

@ -139,9 +139,9 @@ nfd-worker --server-name-override=localhost
### --sources ### --sources
The `--sources` flag specifies a comma-separated list of enabled feature The `--sources` flag specifies a comma-separated list of enabled feature
sources. sources. A special value `all` enables all feature sources.
Default: cpu,custom,iommu,kernel,local,memory,network,pci,storage,system,usb Default: all
Example: Example:

View file

@ -124,12 +124,10 @@ func NewNfdWorker(args Args) (NfdWorker, error) {
// Figure out active sources // Figure out active sources
allSources := []source.FeatureSource{ allSources := []source.FeatureSource{
&cpu.Source{}, &cpu.Source{},
&fake.Source{},
&iommu.Source{}, &iommu.Source{},
&kernel.Source{}, &kernel.Source{},
&memory.Source{}, &memory.Source{},
&network.Source{}, &network.Source{},
&panicfake.Source{},
&pci.Source{}, &pci.Source{},
&storage.Source{}, &storage.Source{},
&system.Source{}, &system.Source{},
@ -140,15 +138,33 @@ func NewNfdWorker(args Args) (NfdWorker, error) {
&local.Source{}, &local.Source{},
} }
sourceWhiteList := map[string]struct{}{} // Determine enabled feature
for _, s := range args.Sources { if len(args.Sources) == 1 && args.Sources[0] == "all" {
sourceWhiteList[strings.TrimSpace(s)] = struct{}{} nfd.sources = allSources
} } else {
// Add fake source which is only meant for testing. It will be enabled
// only if listed explicitly.
allSources = append(allSources, &fake.Source{})
allSources = append(allSources, &panicfake.Source{})
nfd.sources = []source.FeatureSource{} sourceWhiteList := map[string]struct{}{}
for _, s := range allSources { for _, s := range args.Sources {
if _, enabled := sourceWhiteList[s.Name()]; enabled { sourceWhiteList[strings.TrimSpace(s)] = struct{}{}
nfd.sources = append(nfd.sources, s) }
nfd.sources = []source.FeatureSource{}
for _, s := range allSources {
if _, enabled := sourceWhiteList[s.Name()]; enabled {
nfd.sources = append(nfd.sources, s)
delete(sourceWhiteList, s.Name())
}
}
if len(sourceWhiteList) > 0 {
names := make([]string, 0, len(sourceWhiteList))
for n := range sourceWhiteList {
names = append(names, n)
}
stderrLogger.Printf("WARNING: skipping unknown source(s) %q specified in --sources", strings.Join(names, ", "))
} }
} }