1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-04-07 01:24:33 +00:00
Node feature discovery for Kubernetes
Find a file
Igor Velichkovich a7634030de improve docs
2025-01-04 17:54:18 -08:00
.github Release template: Document tagging for API submodule 2024-11-06 15:10:38 +01:00
api go.mod: bump golang.org/x/net to v0.33.0 2024-12-20 14:46:37 +02:00
cmd add configurable pagination to nfd-gc 2025-01-04 11:36:13 -08:00
demo
deployment Update autogenerated code 2024-12-18 12:30:46 +02:00
docs improve docs 2025-01-04 17:54:18 -08:00
enhancements NFD image compatibility proposal 2024-10-16 10:49:22 +02:00
examples Introduce nfd client tool with a subset of image compatibility commands 2024-12-18 10:49:02 +01:00
hack Add NodeFeatureGroup CRD 2024-05-23 16:34:08 +02:00
pkg add configurable pagination to nfd-gc 2025-01-04 11:36:13 -08:00
scripts Fix version parsing 2024-12-12 22:14:50 +02:00
source Extend NFR code with MatchStatus and introduce failFast strategy. 2024-12-18 10:48:14 +01:00
test Cleanup for NodeFeature API being GA 2024-12-13 15:40:46 +02: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
cloudbuild.yaml cloudbuild: increase the image build timeout 2024-07-09 12:35:33 +03:00
code-of-conduct.md
codecov.yml
CONTRIBUTING.md
Dockerfile Dockerfile: cache go modules on build 2024-07-18 15:58:16 +03:00
Dockerfile_generator Drop protobuf definitions and protobuf code generation 2024-12-18 12:30:16 +02:00
go.mod build(deps): bump github.com/onsi/gomega from 1.36.1 to 1.36.2 2025-01-02 08:59:32 +00:00
go.sum build(deps): bump github.com/onsi/gomega from 1.36.1 to 1.36.2 2025-01-02 08:59:32 +00:00
LICENSE
Makefile Introduce nfd client tool with a subset of image compatibility commands 2024-12-18 10:49:02 +01:00
netlify.toml docs: use jekyll-rtd-theme from a ruby gem 2024-08-08 23:33:37 +03:00
OWNERS replace AhmedGrati account with TessaIO as reviewer 2024-03-16 21:37:05 +01:00
README.md README: update to v0.17 2024-12-31 13:15:52 +02:00
SECURITY_CONTACTS
Tiltfile Bump Go to v1.23 2024-09-04 09:21:13 +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

$ kubectl apply -k "https://github.com/kubernetes-sigs/node-feature-discovery/deployment/overlays/default?ref=v0.17.0
  namespace/node-feature-discovery created
  customresourcedefinition.apiextensions.k8s.io/nodefeaturerules.nfd.k8s-sigs.io created
  customresourcedefinition.apiextensions.k8s.io/nodefeatures.nfd.k8s-sigs.io created
  serviceaccount/nfd-gc created
  serviceaccount/nfd-master created
  serviceaccount/nfd-worker created
  role.rbac.authorization.k8s.io/nfd-worker created
  clusterrole.rbac.authorization.k8s.io/nfd-gc created
  clusterrole.rbac.authorization.k8s.io/nfd-master created
  rolebinding.rbac.authorization.k8s.io/nfd-worker created
  clusterrolebinding.rbac.authorization.k8s.io/nfd-gc created
  clusterrolebinding.rbac.authorization.k8s.io/nfd-master created
  configmap/nfd-master-conf created
  configmap/nfd-worker-conf created
  deployment.apps/nfd-gc created
  deployment.apps/nfd-master created
  daemonset.apps/nfd-worker created

$ 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",
...