diff --git a/stable b/stable index b3fdd95ce..e631300a9 120000 --- a/stable +++ b/stable @@ -1 +1 @@ -v0.12/ \ No newline at end of file +v0.9/ \ No newline at end of file diff --git a/v0.6/404.html b/v0.6/404.html index 2122c45e7..a174983e5 100644 --- a/v0.6/404.html +++ b/v0.6/404.html @@ -1 +1 @@ - 404 · Node Feature Discovery

404

Not Found


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file + 404 · Node Feature Discovery
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

404

Not Found


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/advanced/index.html b/v0.6/advanced/index.html index 01657d574..105294569 100644 --- a/v0.6/advanced/index.html +++ b/v0.6/advanced/index.html @@ -1,4 +1,4 @@ - Developer Guide · Node Feature Discovery

Developer Guide

Table of contents

  1. Building from source
    1. Download the source code
    2. Docker Build
    3. Customizing the Build
    4. Testing
  2. Running Locally
    1. NFD-Master
    2. NFD-Worker
  3. Documentation

Building from source

Download the source code

git clone https://github.com/kubernetes-sigs/node-feature-discovery
+                      Developer Guide · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Developer Guide

Table of contents

  1. Building from source
    1. Download the source code
    2. Docker Build
    3. Customizing the Build
    4. Testing
  2. Running Locally
    1. NFD-Master
    2. NFD-Worker
  3. Documentation

Building from source

Download the source code

git clone https://github.com/kubernetes-sigs/node-feature-discovery
 

Docker Build

Build the container image

See customizing the build below for altering the container image registry, for example.

cd <project-root>
 make
 

Push the container image

Optional, this example with Docker.

docker push <IMAGE_TAG>
@@ -98,4 +98,4 @@ nfd-worker.
                               sleep). [Default: 60s]
 

NOTE Some feature sources need certain directories and/or files from the host mounted inside the NFD container. Thus, you need to provide Docker with the correct --volume options in order for them to work correctly when run stand-alone directly with docker run. See the template spec for up-to-date information about the required volume mounts.

Documentation

All documentation resides under the docs directory in the source tree. It is designed to be served as a html site by GitHub Pages.

Building the documentation is containerized in order to fix the build environment. The recommended way for developing documentation is to run:

make site-serve
 

This will build the documentation in a container and serve it under localhost:4000/ making it easy to verify the results. Any changes made to the docs/ will automatically re-trigger a rebuild and are reflected in the served content and can be inspected with a simple browser refresh.

In order to just build the html documentation run:

make site-build
-

This will generate html documentation under docs/_site/.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

This will generate html documentation under docs/_site/.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/contributing/index.html b/v0.6/contributing/index.html index 6ff2495a0..3863555c3 100644 --- a/v0.6/contributing/index.html +++ b/v0.6/contributing/index.html @@ -1 +1 @@ - Contributing · Node Feature Discovery

Contributing


Community

You can reach us via the following channels:

Governance

This is a SIG-node subproject, hosted under the Kubernetes SIGs organization in Github. The project was established in 2016 and was migrated to Kubernetes SIGs in 2018.

License

This is open source software released under the Apache 2.0 License.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file + Contributing · Node Feature Discovery
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Contributing


Community

You can reach us via the following channels:

Governance

This is a SIG-node subproject, hosted under the Kubernetes SIGs organization in Github. The project was established in 2016 and was migrated to Kubernetes SIGs in 2018.

License

This is open source software released under the Apache 2.0 License.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/deployment-and-usage.html b/v0.6/get-started/deployment-and-usage.html index 0a7a5aa77..7c581b0a1 100644 --- a/v0.6/get-started/deployment-and-usage.html +++ b/v0.6/get-started/deployment-and-usage.html @@ -1,4 +1,4 @@ - Deployment and Usage · Node Feature Discovery

Deployment and Usage

Table of Contents

  1. System requirements
  2. Usage
    1. NFD-Master
    2. NFD-Worker
    3. NFD-Master and NFD-Worker in the same Pod
    4. TLS authentication
  3. Deployment options
    1. Deployment Templates
    2. Build Your Own
  4. Configuration
  5. Using Node Labels

System requirements

  1. Linux (x86_64/Arm64/Arm)
  2. kubectl (properly set up and configured to work with your Kubernetes cluster)
  3. Docker (only required to build and push docker images)

Usage

NFD-Master

NFD-Master runs as a deployment (with a replica count of 1), by default it prefers running on the cluster's master nodes but will run on worker nodes if no master nodes are found.

For High Availability, you should simply increase the replica count of the deployment object. You should also look into adding inter-pod affinity to prevent masters from running on the same node. However note that inter-pod affinity is costly and is not recommended in bigger clusters.

You can use the template spec provided to deploy nfd-master, or use nfd-master.yaml generated by Makefile. The latter includes image: and namespace: definitions that match the latest built image. Example:

make IMAGE_TAG=<IMAGE_TAG>
+                      Deployment and Usage · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Deployment and Usage

Table of Contents

  1. System requirements
  2. Usage
    1. NFD-Master
    2. NFD-Worker
    3. NFD-Master and NFD-Worker in the same Pod
    4. TLS authentication
  3. Deployment options
    1. Deployment Templates
    2. Build Your Own
  4. Configuration
  5. Using Node Labels

System requirements

  1. Linux (x86_64/Arm64/Arm)
  2. kubectl (properly set up and configured to work with your Kubernetes cluster)
  3. Docker (only required to build and push docker images)

Usage

NFD-Master

NFD-Master runs as a deployment (with a replica count of 1), by default it prefers running on the cluster's master nodes but will run on worker nodes if no master nodes are found.

For High Availability, you should simply increase the replica count of the deployment object. You should also look into adding inter-pod affinity to prevent masters from running on the same node. However note that inter-pod affinity is costly and is not recommended in bigger clusters.

You can use the template spec provided to deploy nfd-master, or use nfd-master.yaml generated by Makefile. The latter includes image: and namespace: definitions that match the latest built image. Example:

make IMAGE_TAG=<IMAGE_TAG>
 docker push <IMAGE_TAG>
 kubectl create -f nfd-master.yaml
 

NFD-Master listens for connections from nfd-worker(s) and connects to the Kubernetes API server to add node labels advertised by them.

If you have RBAC authorization enabled (as is the default e.g. with clusters initialized with kubeadm) you need to configure the appropriate ClusterRoles, ClusterRoleBindings and a ServiceAccount in order for NFD to create node labels. The provided template will configure these for you.

NFD-Worker

NFD-Worker is preferably run as a Kubernetes DaemonSet. There is an example spec (nfd-worker-daemonset.yaml.template) that can be used as a template, or, as is when just trying out the service. Similarly to nfd-master above, the Makefile also generates nfd-worker-daemonset.yaml from the template that you can use to deploy the latest image. Example:

make IMAGE_TAG=<IMAGE_TAG>
@@ -34,4 +34,4 @@ kubectl create configmap nfd-worker-config --from-file=nfd-worker.conf
       name: go1
   nodeSelector:
     feature.node.kubernetes.io/cpu-pstate.turbo: 'true'
-

For more details on targeting nodes, see node selection.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

For more details on targeting nodes, see node selection.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/examples-and-demos.html b/v0.6/get-started/examples-and-demos.html index fe14b7449..f94e40f50 100644 --- a/v0.6/get-started/examples-and-demos.html +++ b/v0.6/get-started/examples-and-demos.html @@ -1 +1 @@ - Examples and Demos · Node Feature Discovery

Examples And Demos

Table of Contents

  1. Demos
    1. Usage demo
    2. Demo Use Case

This page contains usage examples and demos.

Demos

Usage demo

asciicast

Demo Use Case

A demo on the benefits of using node feature discovery can be found in the source code repository under demo/.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file + Examples and Demos · Node Feature Discovery
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Examples And Demos

Table of Contents

  1. Demos
    1. Usage demo
    2. Demo Use Case

This page contains usage examples and demos.

Demos

Usage demo

asciicast

Demo Use Case

A demo on the benefits of using node feature discovery can be found in the source code repository under demo/.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/features.html b/v0.6/get-started/features.html index cf364a353..5ef94b592 100644 --- a/v0.6/get-started/features.html +++ b/v0.6/get-started/features.html @@ -1,4 +1,4 @@ - Feature Discovery · Node Feature Discovery

Feature Discovery

Table of Contents

  1. Feature labels
    1. CPU Features
    2. Custom Features
    3. IOMMU Features
    4. Kernel Features
    5. Memory Features
    6. Network Features
    7. PCI Features
    8. USB Features
    9. Storage Features
    10. System Features
    11. Feature Detector Hooks (User-specific Features)
  2. Extended resources (experimental)

Feature discovery in nfd-worker is performed by a set of separate modules called feature sources. Most of them are specifically responsible for certain domain of features (e.g. cpu). In addition there are two highly customizable feature sources that work accross the system.

Feature labels

The published node labels encode a few pieces of information:

  • Namespace, i.e. feature.node.kubernetes.io
  • The source for each label (e.g. cpu).
  • The name of the discovered feature as it appears in the underlying source, (e.g. cpuid.AESNI from cpu).
  • The value of the discovered feature.

Feature label names adhere to the following pattern:

<namespace>/<source name>-<feature name>[.<attribute name>]
+                      Feature Discovery · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Feature Discovery

Table of Contents

  1. Feature labels
    1. CPU Features
    2. Custom Features
    3. IOMMU Features
    4. Kernel Features
    5. Memory Features
    6. Network Features
    7. PCI Features
    8. USB Features
    9. Storage Features
    10. System Features
    11. Feature Detector Hooks (User-specific Features)
  2. Extended resources (experimental)

Feature discovery in nfd-worker is performed by a set of separate modules called feature sources. Most of them are specifically responsible for certain domain of features (e.g. cpu). In addition there are two highly customizable feature sources that work accross the system.

Feature labels

The published node labels encode a few pieces of information:

  • Namespace, i.e. feature.node.kubernetes.io
  • The source for each label (e.g. cpu).
  • The name of the discovered feature as it appears in the underlying source, (e.g. cpuid.AESNI from cpu).
  • The value of the discovered feature.

Feature label names adhere to the following pattern:

<namespace>/<source name>-<feature name>[.<attribute name>]
 

The last component (i.e. attribute-name) is optional, and only used if a feature logically has sub-hierarchy, e.g. sriov.capable and sriov.configure from the network source.

The --sources flag controls which sources to use for discovery.

Note: Consecutive runs of nfd-worker will update the labels on a given node. If features are not discovered on a consecutive run, the corresponding label will be removed. This includes any restrictions placed on the consecutive run, such as restricting discovered features with the –label-whitelist option.

CPU Features

Feature name Attribute Description
cpuid <cpuid flag> CPU capability is supported
hardware_multithreading   Hardware multithreading, such as Intel HTT, enabled (number of logical CPUs is greater than physical CPUs)
power sst_bf.enabled Intel SST-BF (Intel Speed Select Technology - Base frequency) enabled
pstate turbo Set to ‘true' if turbo frequencies are enabled in Intel pstate driver, set to ‘false' if they have been disabled.
rdt RDTMON Intel RDT Monitoring Technology
  RDTCMT Intel Cache Monitoring (CMT)
  RDTMBM Intel Memory Bandwidth Monitoring (MBM)
  RDTL3CA Intel L3 Cache Allocation Technology
  RDTL2CA Intel L2 Cache Allocation Technology
  RDTMBA Intel Memory Bandwidth Allocation (MBA) Technology

The (sub-)set of CPUID attributes to publish is configurable via the attributeBlacklist and attributeWhitelist cpuid options of the cpu source. If whitelist is specified, only whitelisted attributes will be published. With blacklist, only blacklisted attributes are filtered out. attributeWhitelist has priority over attributeBlacklist. For examples and more information about configurability, see configuration. By default, the following CPUID flags have been blacklisted: BMI1, BMI2, CLMUL, CMOV, CX16, ERMS, F16C, HTT, LZCNT, MMX, MMXEXT, NX, POPCNT, RDRAND, RDSEED, RDTSCP, SGX, SSE, SSE2, SSE3, SSE4.1, SSE4.2 and SSSE3.

NOTE The cpuid features advertise supported CPU capabilities, that is, a capability might be supported but not enabled.

X86 CPUID Attributes (Partial List)

Attribute Description
ADX Multi-Precision Add-Carry Instruction Extensions (ADX)
AESNI Advanced Encryption Standard (AES) New Instructions (AES-NI)
AVX Advanced Vector Extensions (AVX)
AVX2 Advanced Vector Extensions 2 (AVX2)

Arm CPUID Attribute (Partial List)

Attribute Description
IDIVA Integer divide instructions available in ARM mode
IDIVT Integer divide instructions available in Thumb mode
THUMB Thumb instructions
FASTMUL Fast multiplication
VFP Vector floating point instruction extension (VFP)
VFPv3 Vector floating point extension v3
VFPv4 Vector floating point extension v4
VFPD32 VFP with 32 D-registers
HALF Half-word loads and stores
EDSP DSP extensions
NEON NEON SIMD instructions
LPAE Large Physical Address Extensions

Arm64 CPUID Attribute (Partial List)

Attribute Description
AES Announcing the Advanced Encryption Standard
EVSTRM Event Stream Frequency Features
FPHP Half Precision(16bit) Floating Point Data Processing Instructions
ASIMDHP Half Precision(16bit) Asimd Data Processing Instructions
ATOMICS Atomic Instructions to the A64
ASIMRDM Support for Rounding Double Multiply Add/Subtract
PMULL Optional Cryptographic and CRC32 Instructions
JSCVT Perform Conversion to Match Javascript
DCPOP Persistent Memory Support

Custom Features

The Custom feature source allows the user to define features based on a mix of predefined rules. A rule is provided input witch affects its process of matching for a defined feature.

To aid in making Custom Features clearer, we define a general and a per rule nomenclature, keeping things as consistent as possible.

General Nomenclature & Definitions

Rule        :Represents a matching logic that is used to match on a feature.
 Rule Input  :The input a Rule is provided. This determines how a Rule performs the match operation.
 Matcher     :A composition of Rules, each Matcher may be composed of at most one instance of each Rule.
@@ -78,4 +78,4 @@ feature.node.kubernetes.io/override_source-OVERRIDE_VALUE=123
 override.namespace/value=456
 

NFD tries to run any regular files found from the hooks directory. Any additional data files your hook might need (e.g. a configuration file) should be placed in a separate directory in order to avoid NFD unnecessarily trying to execute these. You can use a subdirectory under the hooks directory, for example /etc/kubernetes/node-feature-discovery/source.d/conf/.

NOTE! NFD will blindly run any executables placed/mounted in the hooks directory. It is the user's responsibility to review the hooks for e.g. possible security implications.

NOTE! Be careful when creating and/or updating hook or feature files while NFD is running. In order to avoid race conditions you should write into a temporary file (outside the source.d and features.d directories), and, atomically create/update the original file by doing a filesystem move operation.

Extended resources (experimental)

This feature is experimental and by no means a replacement for the usage of device plugins.

Labels which have integer values, can be promoted to Kubernetes extended resources by listing them to the master --resource-labels command line flag. These labels won't then show in the node label section, they will appear only as extended resources.

An example use-case for the extended resources could be based on a hook which creates a label for the node SGX EPC memory section size. By giving the name of that label in the --resource-labels flag, that value will then turn into an extended resource of the node, allowing PODs to request that resource and the Kubernetes scheduler to schedule such PODs to only those nodes which have a sufficient capacity of said resource left.

Similar to labels, the default namespace feature.node.kubernetes.io is automatically prefixed to the extended resource, if the promoted label doesn't have a namespace.

Example usage of the command line arguments, using a new namespace: nfd-master --resource-labels=my_source-my.feature,sgx.some.ns/epc --extra-label-ns=sgx.some.ns

The above would result in following extended resources provided that related labels exist:

  sgx.some.ns/epc: <label value>
   feature.node.kubernetes.io/my_source-my.feature: <label value>
-

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/index.html b/v0.6/get-started/index.html index 5a52f6d40..78af85ae7 100644 --- a/v0.6/get-started/index.html +++ b/v0.6/get-started/index.html @@ -1,4 +1,4 @@ - Get started · Node Feature Discovery

Node Feature Discovery

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

Continue to:

  • Introduction for more details on the project.

  • Quick start for quick step-by-step instructions on how to get NFD running on your cluster.

Quick-start – the short-short version

$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/release-0.6/nfd-master.yaml.template
+                      Get started · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Node Feature Discovery

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

Continue to:

  • Introduction for more details on the project.

  • Quick start for quick step-by-step instructions on how to get NFD running on your cluster.

Quick-start – the short-short version

$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/release-0.6/nfd-master.yaml.template
   namespace/node-feature-discovery created
 ...
 
@@ -19,4 +19,4 @@
     "feature.node.kubernetes.io/cpu-cpuid.AESNI": "true",
 ...
 
-

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/introduction.html b/v0.6/get-started/introduction.html index d4651a5db..ee6a22059 100644 --- a/v0.6/get-started/introduction.html +++ b/v0.6/get-started/introduction.html @@ -1,4 +1,4 @@ - Introduction · Node Feature Discovery

Introduction

Table of Contents

  1. NFD-Master
  2. NFD-Worker
  3. Feature Discovery
  4. Node Annotations

This software enables node feature discovery for Kubernetes. It detects hardware features available on each node in a Kubernetes cluster, and advertises those features using node labels.

NFD consists of two software components:

  1. nfd-master
  2. nfd-worker

NFD-Master

Nfd-master is the daemon responsible for communication towards the Kubernetes API. That is, it receives labeling requests from the worker and modifies node objects accordingly.

NFD-Worker

Nfd-worker is a daemon responsible for feature detection. It then communicates the information to nfd-master which does the actual node labeling. One instance of nfd-worker is supposed to be running on each node of the cluster,

Feature Discovery

Feature discovery is divided into domain-specific feature sources:

  • CPU
  • IOMMU
  • Kernel
  • Memory
  • Network
  • PCI
  • Storage
  • System
  • USB
  • Custom (rule-based custom features)
  • Local (hooks for user-specific features)

Each feature source is responsible for detecting a set of features which. in turn, are turned into node feature labels. Feature labels are prefixed with feature.node.kubernetes.io/ and also contain the name of the feature source. Non-standard user-specific feature labels can be created with the local and custom feature sources.

An overview of the default feature labels:

{
+                      Introduction · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Introduction

Table of Contents

  1. NFD-Master
  2. NFD-Worker
  3. Feature Discovery
  4. Node Annotations

This software enables node feature discovery for Kubernetes. It detects hardware features available on each node in a Kubernetes cluster, and advertises those features using node labels.

NFD consists of two software components:

  1. nfd-master
  2. nfd-worker

NFD-Master

Nfd-master is the daemon responsible for communication towards the Kubernetes API. That is, it receives labeling requests from the worker and modifies node objects accordingly.

NFD-Worker

Nfd-worker is a daemon responsible for feature detection. It then communicates the information to nfd-master which does the actual node labeling. One instance of nfd-worker is supposed to be running on each node of the cluster,

Feature Discovery

Feature discovery is divided into domain-specific feature sources:

  • CPU
  • IOMMU
  • Kernel
  • Memory
  • Network
  • PCI
  • Storage
  • System
  • USB
  • Custom (rule-based custom features)
  • Local (hooks for user-specific features)

Each feature source is responsible for detecting a set of features which. in turn, are turned into node feature labels. Feature labels are prefixed with feature.node.kubernetes.io/ and also contain the name of the feature source. Non-standard user-specific feature labels can be created with the local and custom feature sources.

An overview of the default feature labels:

{
   "feature.node.kubernetes.io/cpu-<feature-name>": "true",
   "feature.node.kubernetes.io/custom-<feature-name>": "true",
   "feature.node.kubernetes.io/iommu-<feature-name>": "true",
@@ -11,4 +11,4 @@
   "feature.node.kubernetes.io/usb-<device label>.present": "<feature value>",
   "feature.node.kubernetes.io/<file name>-<feature name>": "<feature value>"
 }
-

Node Annotations

NFD also annotates nodes it is running on:

Annotation Description
nfd.node.kubernetes.io/master.version Version of the nfd-master instance running on the node. Informative use only.
nfd.node.kubernetes.io/worker.version Version of the nfd-worker instance running on the node. Informative use only.
nfd.node.kubernetes.io/feature-labels Comma-separated list of node labels managed by NFD. NFD uses this internally so must not be edited by users.
nfd.node.kubernetes.io/extended-resources Comma-separated list of node extended resources managed by NFD. NFD uses this internally so must not be edited by users.

Unapplicable annotations are not created, i.e. for example master.version is only created on nodes running nfd-master.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

Node Annotations

NFD also annotates nodes it is running on:

Annotation Description
nfd.node.kubernetes.io/master.version Version of the nfd-master instance running on the node. Informative use only.
nfd.node.kubernetes.io/worker.version Version of the nfd-worker instance running on the node. Informative use only.
nfd.node.kubernetes.io/feature-labels Comma-separated list of node labels managed by NFD. NFD uses this internally so must not be edited by users.
nfd.node.kubernetes.io/extended-resources Comma-separated list of node extended resources managed by NFD. NFD uses this internally so must not be edited by users.

Unapplicable annotations are not created, i.e. for example master.version is only created on nodes running nfd-master.


Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/get-started/quick-start.html b/v0.6/get-started/quick-start.html index 5d5c4ebc7..52cac37b6 100644 --- a/v0.6/get-started/quick-start.html +++ b/v0.6/get-started/quick-start.html @@ -1,4 +1,4 @@ - Quick Start · Node Feature Discovery

Quick Start

Minimal steps to deploy latest released version of NFD in your cluster.

Installation

Deploy nfd-master – creates a new namespace, service and required RBAC rules

kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/release-0.6/nfd-master.yaml.template
+                      Quick Start · Node Feature Discovery              
This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

Quick Start

Minimal steps to deploy latest released version of NFD in your cluster.

Installation

Deploy nfd-master – creates a new namespace, service and required RBAC rules

kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/release-0.6/nfd-master.yaml.template
 

Deploy nfd-worker as a daemonset

kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/release-0.6/nfd-worker-daemonset.yaml.template
 

Verify

Wait until NFD master and worker are running.

$ kubectl -n node-feature-discovery get ds,deploy
 NAME                        DESIRED   CURRENT   READY   UP-TO-DATE   AVAILABLE   NODE SELECTOR   AGE
@@ -30,4 +30,4 @@ spec:
 

See that the pod is running on a desired node

$ kubectl get po feature-dependent-pod -o wide
 NAME                    READY   STATUS    RESTARTS   AGE   IP          NODE     NOMINATED NODE   READINESS GATES
 feature-dependent-pod   1/1     Running   0          23s   10.36.0.4   node-2   <none>           <none>
-

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file +

Node Feature Discovery
v0.6
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file diff --git a/v0.6/search.html b/v0.6/search.html index 1e2bd4f59..c9f8dcaa0 100644 --- a/v0.6/search.html +++ b/v0.6/search.html @@ -1 +1 @@ - Search · Node Feature Discovery

Searching


    Node Feature Discovery
    v0.6
    Versions
    GitHub
    Homepage
    Issues
    Download

    The software is under the terms of Apache License 2.0.
    \ No newline at end of file + Search · Node Feature Discovery
    This documentation is for Node Feature Discovery version that is no longer supported. Please upgrade and visit the documentation of the latest stable release.

    Searching


      Node Feature Discovery
      v0.6
      Versions
      GitHub
      Homepage
      Issues
      Download

      The software is under the terms of Apache License 2.0.
      \ No newline at end of file diff --git a/v0.6/sitemap.xml b/v0.6/sitemap.xml index f150ab2d6..151fff6df 100644 --- a/v0.6/sitemap.xml +++ b/v0.6/sitemap.xml @@ -1 +1 @@ - https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/ 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/introduction.html 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/advanced/ 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/quick-start.html 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/deployment-and-usage.html 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/contributing/ 0.5 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/features.html 1.0 2021-05-19T08:18:51-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/examples-and-demos.html 0.5 2021-05-19T08:18:51-05:00 \ No newline at end of file + https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/ 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/introduction.html 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/advanced/ 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/quick-start.html 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/deployment-and-usage.html 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/contributing/ 0.5 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/features.html 1.0 2023-04-14T16:16:47-05:00 https://kubernetes-sigs.github.com/node-feature-discovery/v0.6/get-started/examples-and-demos.html 0.5 2023-04-14T16:16:47-05:00 \ No newline at end of file diff --git a/versions.js b/versions.js index 9d0a95a30..a4bbd37d2 100644 --- a/versions.js +++ b/versions.js @@ -1,5 +1,6 @@ function getVersionListItems() { return [ + { name: 'charts', url: '/node-feature-discovery/charts' }, { name: 'master', url: '/node-feature-discovery/master' }, { name: 'stable', url: '/node-feature-discovery/stable' }, { name: 'v0.10', url: '/node-feature-discovery/v0.10' },