.. _/spec/hardware: Hardware ======== *As a tester I want to specify detailed hardware requirements for the guest on which the tests will be executed.* As part of the :ref:`/spec/plans/provision` step it is possible to use the ``hardware`` key to specify additional requirements for the testing environment. This provides a generic and an extensible way to write down essential hardware requirements. For example one consistent way how to specify `at least 2 GB of RAM` for all supported provisioners. Introduction ^^^^^^^^^^^^ Individual requirements are provided as a simple ``key: value`` pairs, for example the minimum amount of :ref:`/spec/hardware/memory`, or the related information is grouped under a common parent, for example ``cores`` or ``model`` under the :ref:`/spec/hardware/cpu` key. Comparison operators -------------------- The ``value`` part of the constraint follows the schema ``[operator] actual-value``. The ``operator`` is optional, it may be any of the following: ``=``, ``!=``, ``>``, ``>=``, ``<``, ``>=``, ``~`` (regex match), and ``!~`` (regex *not* matches). When operator is omitted, ``=`` is assumed. .. warning:: Only ``=``, ``!=``, ``>``, ``>=``, ``<`` and ``<=`` operators are accepted for requirements that accept numeric values, e.g. :ref:`cpu.cores ` or :ref:`tpm.version `. Only ``=`` and ``!=`` operators are accepted for flag-like requirements, e.g. :ref:`virtualization.is-virtualized `. Only ``=``, ``!``, ``~`` and ``!~`` operators are accepted for requirements that accept string values, e.g. :ref:`cpu.model-name ` or :ref:`virtualization.hypervisor `. .. note:: It is **highly** recommended to wrap values with single or double quotes, i.e. ``memory: '>= 8 GiB'`` rather than ``memory: >= 8 GiB``. This should prevent any unexpected processing by parsers loading the fmf content. Without explicit quotes, some operators might lead to unexpected outcome. .. code-block:: yaml # This... memory: '8 GB' # ... is the same as this: memory: '= 8 GB' # Optional operators at the start of the value memory: '!= 8 GB' memory: '> 8 GB' memory: '>= 8 GB' memory: '< 8 GB' memory: '<= 8 GB' Search ------ Regular expressions can be used for selected fields such as the :ref:`/spec/hardware/cpu` model name or :ref:`/spec/hardware/hostname`. Use ``~`` for positive and ``!~`` for negative regular expressions at the beginning of the string. Any leading or trailing white space from the search string is removed. .. code-block:: yaml # Search for processors using a cpu model name cpu: model-name: "~ AMD" # Select guests with a non-matching hostname hostname: "!~ kvm-01.*" .. note:: The full extent of regular expressions might not be supported across all provision implementations. However, the "any character" pattern, ``.*``, should be supported everywhere. Logic operators --------------- When multiple environment requirements are provided the provision implementation should attempt to satisfy all of them. It is also possible to write this explicitly using the ``and`` operator containing a list of dictionaries with individual requirements. When the ``or`` operator is used, any of the alternatives provided in the list should be sufficient: .. code-block:: yaml # By default exact value expected, these are equivalent: cpu: model: 37 cpu: model: '= 37' # Using advanced logic operators and: - cpu: family: 15 - or: - cpu: model: 65 - cpu: model: 67 - cpu: model: 69 Units ----- The `pint`__ library is used for processing various units, both decimal and binary prefixes can be used: .. code-block:: 1 MB = 1 000 000 B 1 MiB = 1 048 576 B __ https://pint.readthedocs.io/ Names and IDs ------------- When looking for specific devices, it is often possible to request them either by their name or by some kind of ID. The specification follows a simple naming scheme when a property of a device can be expressed as a name as well as an ID: * keys with ``-name`` suffix represent human-comprehensible string names - model name, vendor name, microarchitecture code name, brand names, and so on. For example, ``Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz`` would be a ``cpu.model-name`` requirement. * IDs are left without a suffix. IDs tend to be integers, or groups of integers. For example, ``62`` would be a ``cpu.model`` requirement. Requirements given by a name can often make use of regular expression operators (``~`` and ``!~``) while IDs can be used very reasonably with other comparison operators like ``>=``. Device and vendor IDs --------------------- Besides the names, provisioning infrastructures may support searching for devices by device and/or vendor ID. The ID namespace would be determined by the guest architecture, the buses and other specifications the guest HW is built from. For example, probably the most common namespace would be the `PCI ID Repository `_, collecting IDs and names of PCI devices, easy to encounter in both bare-metal and virtualized x86_64 guests. However, this ID database is not the only one in existence, and guest architecture may allow for additional device and vendor ID schemas. Notes ----- The implementation for this common ``hardware`` key is in progress. Features under this section marked as implemented are already supported by the ``artemis`` plugin. Support in other provision plugins is on the way. Check individual plugin documentation for additional information on the hardware requirement support. .. note:: Some plugins may require additional configuration. For example, Artemis can provision machines with disks of a particular size, but to do so, Artemis maintainers must configure disk sizes for various AWS / OpenStack / Azure flavors. The constraint is supported and implemented, but it will not deliver the required virtual machine when the plugin's backend, the Artemis deployment, isn't configured correctly. .. note:: Some plugins may support requirements that are impossible to satisfy, e.g. the :ref:`/spec/plans/provision/local` plugin can support the ``cpu.family`` requirement, but it is hard-locked to the CPU of one's own machine. When facing impossible requirements, plugins will emit a warning reporting this situation to the user, but in general, plugins will try to continue provisioning the guest. **Examples:** .. code-block:: yaml # Use the artemis plugin to provision the latest Fedora on # a guest with the x86_64 architecture and 8 GB of memory provision: how: artemis image: fedora hardware: arch: x86_64 memory: 8 GB .. _/spec/hardware/arch: arch ^^^^ Select or provision a guest with a given CPU architecture. .. note:: This is a draft, the story is not implemented yet. .. code-block:: # String, any of well-known short architecture names. arch: "aarch64"|"i386"|"ppc64"|"ppc64le"|"s390x"|"x86_64"|... .. warning:: This field is not supported under ``hardware``. It is planned to be supported in the future. Use the ``arch`` field of specific provision plugins to select the architecture. If this field is used in Testing Farm's hardware requirements the request will abort. **Examples:** .. code-block:: yaml # Require a good old x86_64 box arch: x86_64 **Status:** idea .. _/spec/hardware/boot: boot ^^^^ Select or provision a guest with requested boot properties. .. code-block:: boot: # String, a boot method the guest must boot with. method: "bios"|"uefi" **Examples:** .. code-block:: yaml # Require a guest with a UEFI boot method. boot: method: uefi .. code-block:: yaml # Require a guest without a legacy BIOS. boot: method: "!= bios" **Status:** implemented * Implemented by `provision/artemis `_ .. _/spec/hardware/compatible: compatible ^^^^^^^^^^ Select or provision a guest compatible with given areas. .. code-block:: compatible: # List of strings, any of distro names. distro: - distro1 - distro2 ... See the context :ref:`/spec/context/dimension` definitions for the list of supported values of the ``distro`` items. **Examples:** .. code-block:: yaml # Select a guest compatible with both rhel-8 and rhel-9 compatible: distro: - rhel-8 - rhel-9 **Status:** implemented * Implemented by `provision/artemis `_ .. _/spec/hardware/cpu: cpu ^^^ Select or provision a guest with given CPU properties. .. code-block:: cpu: # Integer or string, number of CPU sockets in the system. sockets: 1|">= 1" # Integer or string, number of CPU cores in the system. cores: 4|">= 4" # Integer or string, number of CPU threads in the system. threads: 8|">= 8" # Integer or string, number of CPU cores per socket. cores-per-socket: 4|">= 4" # Integer or string, number of CPU threads per core. threads-per-core: 2|">= 2" # Integer or string, total number of logical CPUs. processors: 8|">= 8" # String, CPU family name. family-name: Comet Lake # Integer or string, CPU family. family: 6|">= 6" # String, CPU model name. model-name: Intel(R) Core(TM) i7-10610U CPU @ 1.80GHz # Integer or string, CPU model. model: 142|">= 142" # String, CPU vendor name. vendor-name: GenuineIntel # Number or string, an ID of CPU vendor. vendor: 1234|"> 1234" # Integer or string, CPU stepping. stepping: 10|">= 10" # List of strings, CPU flags as reported # Field applies an implicit "and" to listed flags, all items of the # list must match. # Items may contain a nested operator, "=" and "!=" are only two allowed. flag: - flag1 - flag2 - "= flag3" - "!= flag4" ... See e.g. https://virtual-dba.com/blog/sockets-cores-and-threads/ for the socket, core and thread distinction. See e.g. https://en.wikichip.org/wiki/WikiChip for information on family, model, stepping and corresponding names. ``/proc/cpuinfo`` and ``lscpu`` are also useful resources. .. versionchanged:: 1.33 ``beaker`` plugin supports ``cpu.cores`` .. versionchanged:: 1.31 ``beaker`` plugin supports ``cpu.flag`` .. versionchanged:: 1.30 ``artemis`` plugin supports ``cpu.flag`` with Artemis 0.0.67 .. versionchanged:: 1.27 ``beaker`` plugin supports ``cpu.model`` and ``cpu.processors`` **Examples:** .. code-block:: yaml # Request a rather stronger guest. cpu: processors: ">= 16" .. code-block:: yaml # Request a CPU of a specific model set. cpu: model-name: "~ Intel(R) Core(TM) i7-.+" .. code-block:: yaml # Request a CPU with AVX support cpu: flag: - avx - avx2 .. code-block:: yaml # Request a CPU with more than 4 cores. cpu: cores: ">= 4" **Status:** implemented * Implemented by `provision/artemis `_ * Implemented by `provision/beaker `_ (``cpu.flag``, ``cpu.processors``, ``cpu.model``, ``cpu.cores`` only) .. _/spec/hardware/device: device ^^^^^^ Select or provision a guest with a given device. .. note:: This is a draft, the story is not implemented yet. This is a generalization of various device-like requirements like ``gpu`` or ``network``. It provides a generic way for requesting devices for which tmt defines no special HW requirements. The specialized requirements are recommended, as they express the desired guest properties in a more explicit way. .. code-block:: device: # String, a network device name. device-name: "A Generic Ethernet Card" # Number or string, a network device ID. device: 1234|"> 1234" # String, a name of the device vendor. vendor-name: "A Well-Known Device Manufacturer" # Number or string, an ID of the device vendor. vendor: 1234|"> 1234" # String, name of the kernel driver module for the device. driver: noveau .. versionadded:: 1.29 **Examples:** .. code-block:: yaml # Request a guest with a Thunderbolt controller device: device-name: "~ Intel Corporation .* Thunderbolt 3" driver: thundebolt **Status:** idea .. _/spec/hardware/disk: disk ^^^^ Select or provision a guest with a given disk storage. .. code-block:: # A list of dictionaries, each describing one disk storage. disk: # Number or string, the amount of storage requested. # Bytes are assumed when no unit is specified. - size: 1234|">= 512 GiB" # String, disk model requested. - model-name: "well-known disk model" # String, disk driver requested. - driver: "well-known disk driver" .. versionchanged:: 1.32 Added `driver` and `model-name` into specification. **Examples:** .. code-block:: yaml # Require a disk big enough for testing disk: - size: 500 GB .. code-block:: yaml # Require a disk with specified model disk: - model-name: 'PERC H310' .. code-block:: yaml # Require a disk with specified driver disk: - driver: mpt3sas .. code-block:: yaml # Multiple disks can be requested as well disk: - size: '>= 2 GB' - model-name: 'PERC H310' - driver: '~ sas.*' **Status:** implemented * Implemented by `provision/artemis `_ (``size`` only) * Implemented by `provision/beaker `_ * Implemented by `provision/virtual `_ (``size`` only with ``=``, ``>=`` and ``<=`` operators only) .. _/spec/hardware/gpu: gpu ^^^ Select or provision a guest with a given GPU properties. .. note:: This is a draft, the story is not implemented yet. .. code-block:: gpu: # String, a network device name. device-name: "A Generic Graphics Card" # Number or string, a network device ID. device: 1234|"> 1234" # String, a name of the device vendor. vendor-name: "A Well-Known GPU Manufacturer" # Number or string, an ID of the device vendor. vendor: 1234|"> 1234" # String, name of the kernel driver module for the device. driver: a_generic_vga_driver .. versionadded:: 1.29 **Examples:** .. code-block:: yaml # Request a guest with particular GPU gpu: # By the device name... device-name: C51 [GeForce 6150 LE] # ... or by its ID. device: 0241 driver: nouveau .. code-block:: yaml # Request a guest with any NVIDIA GPU gpu: vendor-name: NVIDIA **Status:** idea .. _/spec/hardware/hostname: hostname ^^^^^^^^ Select a guest with a specific hostname. .. code-block:: # String, the hostname requested. hostname: foo.bar.com **Examples:** .. code-block:: yaml # Choose machine with given hostname hostname: kvm-01.lab.us-east-2.company.com .. code-block:: yaml # Hostname matching a regular expression hostname: "~ kvm-01.*" .. code-block:: yaml # Hostname not matching a regular expression hostname: "!~ kvm-01.*" **Status:** implemented * Implemented by `provision/artemis `_ * Implemented by `provision/beaker `_ .. _/spec/hardware/memory: memory ^^^^^^ Select or provision a guest with the desired amount of memory. .. code-block:: # Number or string, the amount of memory requested. # Bytes are assumed when no unit is specified. memory: 1234|"2 GiB" **Examples:** .. code-block:: yaml # Require an exact amount of memory memory: 8 GB .. code-block:: yaml # Pick a guest with at least 8 GB memory: ">= 8 GB" **Status:** implemented * Implemented by `provision/artemis `_ * Implemented by `provision/beaker `_ * Implemented by `provision/virtual `_ (``=``, ``>=`` and ``<=`` operators only) .. _/spec/hardware/network: network ^^^^^^^ Select or provision a guest with given network devices. .. code-block:: # A list of dictionaries, each describing one network device. network: # String, a network device type. - type: "eth"|"bridge"|"ipip"|... # String, a network device name. device-name: "A Generic Ethernet Card" # Number or string, a network device ID. device: 1234|"> 1234" # String, a name of the device vendor. vendor-name: "A Well-Known Device Manufacturer" # Number or string, an ID of the device vendor. vendor: 1234|"> 1234" # String, name of the kernel driver module for the device. driver: a_generic_nic_driver .. versionchanged:: 1.29 Added missing ``device`` and ``vendor`` into specification. **Examples:** .. code-block:: yaml # Select by vendor and device name network: - type: eth vendor-name: ~ ^Broadcom device-name: ~ ^NetXtreme II BCM **Status:** implemented * Implemented by `provision/artemis `_ (``network.type`` only, ``network.type: eth`` only) .. _/spec/hardware/system: system ^^^^^^ Select or provision a guest with given system properties. .. note:: This is a draft, the story is not implemented yet. .. code-block:: system: # Number or string, an ID of the device vendor. vendor: 1234|"> 1234" # String, a name of the device vendor. vendor-name: "A Well-Known Device Manufacturer" # Integer or string, system model ID. model: 1234|"> 1234" # String, system model name. model-name: ProLiant DL385 Gen10 # Integer or string, required number of NUMA nodes. numa-nodes: 2|">= 2" **Examples:** .. code-block:: yaml # Select any system by a given vendor system: vendor-name: "~ HPE" .. code-block:: yaml # Select any HPE system with enough NUMA nodes. system: vendor-name: "~ HPE" numa-nodes: ">= 4" **Status:** idea .. _/spec/hardware/tpm: tpm ^^^ Select or provision a guest with the `Trusted Platform Module`. .. code-block:: tpm: # String, TPM version requested. version: "x.y" .. versionchanged:: 1.32 ``virtual`` plugin supports ``tpm.version`` **Examples:** .. code-block:: yaml # Require a presence of TPM of a specific version. tpm: version: "2.0" **Status:** implemented * Implemented by `provision/artemis `_ * Implemented by `provision/virtual `_ (``version: 2.0`` only) .. _/spec/hardware/virtualization: virtualization ^^^^^^^^^^^^^^ Select or provision a guest with requested virtualization properties. .. versionchanged:: 1.33 ``beaker`` plugin supports ``virtualization.hypervisor`` .. versionchanged:: 1.31 ``beaker`` plugin supports ``virtualization.is-virtualized`` .. code-block:: virtualization: # String, any of well-known hypervisor names. hypervisor: "hyperv"|"powerkvm"|"kvm"|"xen"|"nitro"|... # Boolean, whether the guest itself is virtualized or not. is-virtualized: true|false # Boolean, whether the guest supports hardware-assisted # virtualization. is-supported: true|false **Examples:** .. code-block:: yaml # Require a guest which supports virtualization virtualization: is-supported: true .. code-block:: yaml # Require a bare-metal guest virtualization: is-virtualized: false .. code-block:: yaml # Ask for a virtualized guest on top of a kvm hypervisor virtualization: is-virtualized: true hypervisor: kvm **Status:** implemented * Implemented by `provision/artemis `_ * Implemented by `provision/beaker `_ (``virtualization.is-virtualized`` and ``virtualization.hypervisor`` only) .. _/spec/hardware/zcrypt: zcrypt ^^^^^^ Select or provision a guest with the `System z cryptographic adapter`. .. code-block:: zcrypt: # String, adapter requested. adapter: "x" # String, mode requested. mode: "y" .. versionadded:: 1.31 .. versionchanged:: 1.32 ``beaker`` plugin supports ``zcrypt`` **Examples:** .. code-block:: yaml # Require a presence of CEX8C adapter in the CCA mode zcrypt: adapter: "CEX8C" mode: "CCA" **Status:** implemented * Implemented by `provision/beaker `_