Git Product home page Git Product logo

cpu-nfd-plugin's Introduction

cpu-nfd-plugin

cpu-nfd-plugin is plugin for node-labeller. It creates list of all supported cpu models and features on host, which node-labeller then exposes as node labels.

How it works

Plugin parses libvirt data (cpu models, features) and prints data to stdout in format:

/cpu-model-haswell
/cpu-model-core2duo
/cpu-feature-aes
...

cpu-node-labeller takes this output and creates labels from them.

The plugin can hide old cpus. This can be done by creating config map:

apiVersion: v1
kind: ConfigMap
metadata:
  name: cpu-plugin-configmap
data:
  cpu-plugin-configmap.yaml: |- 
    obsoleteCPUs:
      - "486"
      - "pentium"
      - "pentium2"
      - "pentium3"
      - "pentiumpro"
    minCPU: "Penryn"

This config map has to be created before kubevirt-node-labeller is created (example of deploy manifest can be found here), otherwise plugin will show all cpu models. Plugin will not reload when config map is changed.

Add cpu model into obsoleteCPUs array and cpu model will not be listed in labels. User can define minimal cpu model. This model's features will be used as basic features. These basic features are not in the label list. Feature labels are created as subtraction between set of newer cpu features and set of basic cpu features, e.g.: Haswell has: aes, apic, clflush Penryr has: apic, clflush subtraction is: aes. So label will be created only with aes feature.

cpu-nfd-plugin's People

Contributors

ksimon1 avatar omeryahud avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.