Add a new trait for stateless firmware support

Libvirt introduced the capability to launch instances with read-only
firmware image but without NVRAM file in v8.6.0. This introduces
the new trait to present availability of this feature in each compute
node.

Partially-Implements: blueprint libvirt-stateless-firmware
Change-Id: Ic6a2846a1f96a0f8b3a2749ad023ba0faa8a6db8
This commit is contained in:
Takashi Kajinami 2024-02-13 16:38:00 +09:00
parent 83e83b705d
commit fa4f920649

View File

@ -20,5 +20,7 @@ TRAITS = [
'TPM_2_0',
# support for UEFI Secure Boot
# ref: https://specs.openstack.org/openstack/nova-specs/specs/wallaby/implemented/allow-secure-boot-for-qemu-kvm-guests.html # noqa
'UEFI_SECURE_BOOT'
'UEFI_SECURE_BOOT',
# support for stateless firmware
'STATELESS_FIRMWARE'
]