diff --git a/index.html b/index.html index 904300618..12069cb15 100644 --- a/index.html +++ b/index.html @@ -1 +1 @@ - + diff --git a/master/404.html b/master/404.html index 86dd07c70..0f22cfda7 100644 --- a/master/404.html +++ b/master/404.html @@ -1 +1 @@ - 404 · Node Feature Discovery

404

Not Found


Node Feature Discovery
master
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

404

Not Found


Node Feature Discovery
master
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/master/advanced/developer-guide.html b/master/advanced/developer-guide.html index c9c34e959..9d4443025 100644 --- a/master/advanced/developer-guide.html +++ b/master/advanced/developer-guide.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. Deployment
    4. Building Locally
    5. Customizing the Build
    6. 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              

Developer Guide

Table of contents

  1. Building from Source
    1. Download the source code
    2. Docker Build
    3. Deployment
    4. Building Locally
    5. Customizing the Build
    6. 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
 cd node-feature-discovery
 

Docker Build

Build the container image

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

make
 

Push the container image

Optional, this example with Docker.

docker push <IMAGE_TAG>
diff --git a/master/advanced/index.html b/master/advanced/index.html
index c8cd77f8c..d51561eca 100644
--- a/master/advanced/index.html
+++ b/master/advanced/index.html
@@ -1 +1 @@
-                      Advanced · Node Feature Discovery              

Advanced

Advanced topics and reference.


Node Feature Discovery
master
Versions
GitHub
Homepage
Issues
Download

The software is under the terms of Apache License 2.0.
\ No newline at end of file + Advanced · Node Feature Discovery

Advanced

Advanced topics and reference.


Node Feature Discovery
master
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/master/advanced/master-commandline-reference.html b/master/advanced/master-commandline-reference.html index 3c352113a..ec05daea5 100644 --- a/master/advanced/master-commandline-reference.html +++ b/master/advanced/master-commandline-reference.html @@ -1,4 +1,4 @@ - Master Cmdline Reference · Node Feature Discovery

NFD-Master Commandline Flags

Table of Contents

  1. -h, –help
  2. –version
  3. –prune
  4. –port
  5. –ca-file
  6. –cert-file
  7. –key-file
  8. –verify-node-name
  9. –no-publish
  10. –label-whitelist
  11. –extra-label-ns
  12. –resource-labels

To quickly view available command line flags execute nfd-master --help. In a docker container:

docker run gcr.io/k8s-staging-nfd/node-feature-discovery:master nfd-master --help
+                      Master Cmdline Reference · Node Feature Discovery              

NFD-Master Commandline Flags

Table of Contents

  1. -h, –help
  2. –version
  3. –prune
  4. –port
  5. –ca-file
  6. –cert-file
  7. –key-file
  8. –verify-node-name
  9. –no-publish
  10. –label-whitelist
  11. –extra-label-ns
  12. –resource-labels

To quickly view available command line flags execute nfd-master --help. In a docker container:

docker run gcr.io/k8s-staging-nfd/node-feature-discovery:master nfd-master --help
 

-h, –help

Print usage and exit.

–version

Print version and exit.

–prune

The --prune flag is a sub-command like option for cleaning up the cluster. It causes nfd-master to remove all NFD related labels, annotations and extended resources from all Node objects of the cluster and exit.

–port

The --port flag specifies the TCP port that nfd-master listens for incoming requests.

Default: 8080

Example:

nfd-master --port=443
 

–ca-file

The --ca-file is one of the three flags (together with --cert-file and --key-file) controlling master-worker mutual TLS authentication on the nfd-master side. This flag specifies the TLS root certificate that is used for authenticating incoming connections. NFD-Worker side needs to have matching key and cert files configured in order for the incoming requests to be accepted.

Default: empty

Note: Must be specified together with --cert-file and --key-file

Example:

nfd-master --ca-file=/opt/nfd/ca.crt --cert-file=/opt/nfd/master.crt --key-file=/opt/nfd/master.key
 

–cert-file

The --cert-file is one of the three flags (together with --ca-file and --key-file) controlling master-worker mutual TLS authentication on the nfd-master side. This flag specifies the TLS certificate presented for authenticating outgoing traffic towards nfd-worker.

Default: empty

Note: Must be specified together with --ca-file and --key-file

Example:

nfd-master --cert-file=/opt/nfd/master.crt --key-file=/opt/nfd/master.key --ca-file=/opt/nfd/ca.crt
diff --git a/master/advanced/worker-commandline-reference.html b/master/advanced/worker-commandline-reference.html
index e85d6e964..6dd87bbbc 100644
--- a/master/advanced/worker-commandline-reference.html
+++ b/master/advanced/worker-commandline-reference.html
@@ -1,4 +1,4 @@
-                      Worker Cmdline Reference · Node Feature Discovery              

NFD-Worker Commandline Flags

Table of Contents

  1. -h, –help
  2. –version
  3. –config
  4. –options
  5. –server
  6. –ca-file
  7. –cert-file
  8. –key-file
  9. –server-name-override
  10. –sources
  11. –no-publish
  12. –label-whitelist
  13. –oneshot
  14. –sleep-interval

To quickly view available command line flags execute nfd-worker --help. In a docker container:

docker run gcr.io/k8s-staging-nfd/node-feature-discovery:master nfd-worker --help
+                      Worker Cmdline Reference · Node Feature Discovery              

NFD-Worker Commandline Flags

Table of Contents

  1. -h, –help
  2. –version
  3. –config
  4. –options
  5. –server
  6. –ca-file
  7. –cert-file
  8. –key-file
  9. –server-name-override
  10. –sources
  11. –no-publish
  12. –label-whitelist
  13. –oneshot
  14. –sleep-interval

To quickly view available command line flags execute nfd-worker --help. In a docker container:

docker run gcr.io/k8s-staging-nfd/node-feature-discovery:master nfd-worker --help
 

-h, –help

Print usage and exit.

–version

Print version and exit.

–config

The --config flag specifies the path of the nfd-worker configuration file to use.

Default: /etc/kubernetes/node-feature-discovery/nfd-worker.conf

Example:

nfd-worker --config=/opt/nfd/worker.conf
 

–options

The --options flag may be used to specify and override configuration file options directly from the command line. The required format is the same as in the config file i.e. JSON or YAML. Configuration options specified via this flag will override those from the configuration file:

Default: empty

Example:

nfd-worker --options='{"sources":{"cpu":{"cpuid":{"attributeWhitelist":["AVX","AVX2"]}}}}'
 

–server

The --server flag specifies the address of the nfd-master endpoint where to connect to.

Default: localhost:8080

Example:

nfd-worker --server=nfd-master.nfd.svc.cluster.local:443
diff --git a/master/contributing/index.html b/master/contributing/index.html
index 80a498cad..666a052f0 100644
--- a/master/contributing/index.html
+++ b/master/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
master
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

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
master
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/master/get-started/deployment-and-usage.html b/master/get-started/deployment-and-usage.html index 8a95bea0b..ef0075e85 100644 --- a/master/get-started/deployment-and-usage.html +++ b/master/get-started/deployment-and-usage.html @@ -1,4 +1,4 @@ - Deployment and Usage · Node Feature Discovery

Deployment and Usage

Table of Contents

  1. Requirements
  2. Deployment options
    1. Operator
    2. Deployment Templates
    3. Build Your Own
  3. Usage
    1. NFD-Master
    2. NFD-Worker
    3. TLS authentication
  4. Configuration
  5. Using Node Labels
  6. Uninstallation
    1. Operator Was Used for Deployment
    2. Manual
    3. Removing Feature Labels

Requirements

  1. Linux (x86_64/Arm64/Arm)
  2. kubectl (properly set up and configured to work with your Kubernetes cluster)

Deployment options

Operator

Deployment using the Node Feature Discovery Operator is recommended to be done via operatorhub.io.

  1. You need to have OLM installed. If you don't, take a look at the latest release for detailed instructions.
  2. Install the operator:
    kubectl create -f https://operatorhub.io/install/nfd-operator.yaml
    +                      Deployment and Usage · Node Feature Discovery              

    Deployment and Usage

    Table of Contents

    1. Requirements
    2. Deployment options
      1. Operator
      2. Deployment Templates
      3. Build Your Own
    3. Usage
      1. NFD-Master
      2. NFD-Worker
      3. TLS authentication
    4. Configuration
    5. Using Node Labels
    6. Uninstallation
      1. Operator Was Used for Deployment
      2. Manual
      3. Removing Feature Labels

    Requirements

    1. Linux (x86_64/Arm64/Arm)
    2. kubectl (properly set up and configured to work with your Kubernetes cluster)

    Deployment options

    Operator

    Deployment using the Node Feature Discovery Operator is recommended to be done via operatorhub.io.

    1. You need to have OLM installed. If you don't, take a look at the latest release for detailed instructions.
    2. Install the operator:
      kubectl create -f https://operatorhub.io/install/nfd-operator.yaml
       
    3. Create NodeFeatureDiscovery resource (in nfd namespace here):
      cat << EOF | kubectl apply -f -
       apiVersion: v1
       kind: Namespace
      diff --git a/master/get-started/examples-and-demos.html b/master/get-started/examples-and-demos.html
      index c0033b6b6..e950090da 100644
      --- a/master/get-started/examples-and-demos.html
      +++ b/master/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
      master
      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

      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
      master
      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/master/get-started/features.html b/master/get-started/features.html index 2c63fa73a..1efb64f0f 100644 --- a/master/get-started/features.html +++ b/master/get-started/features.html @@ -1,4 +1,4 @@ - Feature Discovery · Node Feature Discovery

      Feature Discovery

      Table of Contents

      1. Feature labels
      2. Feature Sources
        1. CPU
        2. Custom
        3. IOMMU
        4. Kernel
        5. Memory
        6. Network
        7. PCI
        8. USB
        9. Storage
        10. System
        11. Local – User-specific Features
      3. Extended resources

      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

      Each discovered feature is advertised a label in the Kubernetes Node object. The published node labels encode a few pieces of information:

      • Namespace, (all built-in labels use 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              

      Feature Discovery

      Table of Contents

      1. Feature labels
      2. Feature Sources
        1. CPU
        2. Custom
        3. IOMMU
        4. Kernel
        5. Memory
        6. Network
        7. PCI
        8. USB
        9. Storage
        10. System
        11. Local – User-specific Features
      3. Extended resources

      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

      Each discovered feature is advertised a label in the Kubernetes Node object. The published node labels encode a few pieces of information:

      • Namespace, (all built-in labels use 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.

      Feature Sources

      CPU

      The cpu feature source supports the following labels:

      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

      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.
      diff --git a/master/get-started/index.html b/master/get-started/index.html
      index d9db83bab..6d8610b01 100644
      --- a/master/get-started/index.html
      +++ b/master/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/master/nfd-master.yaml.template
      +                      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/master/nfd-master.yaml.template
         namespace/node-feature-discovery created
       ...
       
      diff --git a/master/get-started/introduction.html b/master/get-started/introduction.html
      index 4ee68b103..5d4a0eb1b 100644
      --- a/master/get-started/introduction.html
      +++ b/master/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              

      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",
      diff --git a/master/get-started/quick-start.html b/master/get-started/quick-start.html
      index 2fdaba208..de28f3e8b 100644
      --- a/master/get-started/quick-start.html
      +++ b/master/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/master/nfd-master.yaml.template
      +                      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/master/nfd-master.yaml.template
       

      Deploy nfd-worker as a daemonset

      kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/master/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
      diff --git a/master/search.html b/master/search.html
      index 6aa0353fd..ea69293b9 100644
      --- a/master/search.html
      +++ b/master/search.html
      @@ -1 +1 @@
      -                      Search · Node Feature Discovery              

      Searching


        Node Feature Discovery
        master
        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

        Searching


          Node Feature Discovery
          master
          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/master/sitemap.xml b/master/sitemap.xml index cfe177552..c8fc3fc5b 100644 --- a/master/sitemap.xml +++ b/master/sitemap.xml @@ -1 +1 @@ - https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/introduction.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/ 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/developer-guide.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/ 0.1 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/master-commandline-reference.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/quick-start.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/contributing/ 0.5 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/worker-commandline-reference.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/deployment-and-usage.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/features.html 1.0 2020-11-04T09:46:16-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/examples-and-demos.html 0.5 2020-11-04T09:46:16-06:00 \ No newline at end of file + https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/introduction.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/ 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/developer-guide.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/ 0.1 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/master-commandline-reference.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/quick-start.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/contributing/ 0.5 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/advanced/worker-commandline-reference.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/deployment-and-usage.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/features.html 1.0 2020-11-04T09:54:09-06:00 https://kubernetes-sigs.github.com/node-feature-discovery/master/get-started/examples-and-demos.html 0.5 2020-11-04T09:54:09-06:00 \ No newline at end of file