1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-12-13 01:35:49 +00:00
Node feature discovery for Kubernetes
Find a file
Kubernetes Prow Robot d6c3eb7bf2
Merge pull request #2386 from kubernetes-sigs/dependabot/go_modules/master/github.com/jaypipes/ghw-0.21.0
build(deps): bump github.com/jaypipes/ghw from 0.20.0 to 0.21.0
2025-12-08 07:31:32 -08:00
.github build(deps): bump actions/checkout from 5 to 6 2025-11-24 16:56:50 +00:00
api Update auto-generated code 2025-09-10 11:29:55 +03:00
cmd Merge pull request #2349 from Nordix/cli-tidy-up 2025-11-10 02:04:55 -08:00
demo demo: make demo runnable again 2020-09-10 17:09:53 +03:00
deployment Add labels to Helm chart. 2025-11-24 11:30:57 -05:00
docs Add labels to Helm chart. 2025-11-24 11:30:57 -05:00
enhancements NFD image compatibility proposal 2024-10-16 10:49:22 +02:00
examples Allow DS_PROMETHEUS substitution for grafana dashboard 2025-02-04 09:34:24 -05:00
hack helm: common documentation in html docs and chart readme 2025-10-07 16:57:07 +03:00
pkg Replace deprecated golang.org/x/net/context with standard library 2025-11-19 13:52:57 +01:00
scripts Increase image building timeout 2025-11-04 23:24:56 +02:00
source Remove deprecated // +build directives from CPU source files 2025-11-19 13:52:38 +01:00
test Fix linter errors 2025-08-19 09:48:01 +03:00
testdata Convert testdata to an empty go module 2024-10-22 19:20:33 +02:00
.dockerignore dockerignore: cleanup 2023-12-08 14:48:02 +02:00
.gitignore Add .idea/ to gitignore 2024-09-24 14:34:54 +02:00
artifacthub-repo.yml helm: add artifacthub metadata file to OCI registry 2025-09-25 11:28:00 +03:00
cloudbuild.yaml Increase image building timeout 2025-11-04 23:24:56 +02:00
code-of-conduct.md Update code-of-conduct.md 2017-12-20 14:12:51 -05:00
codecov.yml codecov: drop required minimum coverage ratio of at patch level 2023-04-28 17:00:14 +03:00
CONTRIBUTING.md Template project files 2016-07-22 22:13:48 -07:00
Dockerfile Dockerfile: move the default values for images to Dockerfile to fix build checks warnings 2025-09-26 15:57:50 +03:00
go.mod Merge pull request #2386 from kubernetes-sigs/dependabot/go_modules/master/github.com/jaypipes/ghw-0.21.0 2025-12-08 07:31:32 -08:00
go.sum Merge pull request #2386 from kubernetes-sigs/dependabot/go_modules/master/github.com/jaypipes/ghw-0.21.0 2025-12-08 07:31:32 -08:00
LICENSE Template project files 2016-07-22 22:13:48 -07:00
Makefile docs: bump Ruby version and update build deps 2025-11-21 15:19:35 +02:00
netlify.toml netlify: use bundler to run jekyll 2025-11-24 14:00:18 +02:00
OWNERS stepping down from being a reviewer at NFD 2025-09-06 20:03:15 +02:00
README.md README: release v0.18.3 2025-11-05 10:32:56 +02:00
SECURITY_CONTACTS Update SECURITY_CONTACTS 2020-11-19 15:10:27 -05:00
Tiltfile Bump golang to v1.25 2025-09-09 15:27:50 +03:00

Node Feature Discovery

Go Report Card Prow Build Prow E2E-Test

Welcome to Node Feature Discovery a Kubernetes add-on for detecting hardware features and system configuration!

See our Documentation for detailed instructions and reference

Quick-start the short-short version

Helm

helm install -n node-feature-discovery --create-namespace nfd oci://registry.k8s.io/nfd/charts/node-feature-discovery --version 0.18.3

Kustomize

Alternatively, you can deploy using kubectl and kustomize:

kubectl apply -k "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.18.3"

Verify the deployment

$ kubectl -n node-feature-discovery get all
  NAME                              READY   STATUS    RESTARTS   AGE
  pod/nfd-gc-565fc85d9b-94jpj       1/1     Running   0          18s
  pod/nfd-master-6796d89d7b-qccrq   1/1     Running   0          18s
  pod/nfd-worker-nwdp6              1/1     Running   0          18s
...

$ kubectl get no -o json | jq ".items[].metadata.labels"
  {
    "kubernetes.io/arch": "amd64",
    "kubernetes.io/os": "linux",
    "feature.node.kubernetes.io/cpu-cpuid.ADX": "true",
    "feature.node.kubernetes.io/cpu-cpuid.AESNI": "true",
...