mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 21:46:22 +01:00
27 lines
702 B
Plaintext
27 lines
702 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * virt/virtual_machines/virtual_disks/virt-configuring-shared-volumes-for-vms.adoc
|
|
|
|
:_content-type: PROCEDURE
|
|
[id="virt-enabling-multi-queue_{context}"]
|
|
= Enabling multi-queue functionality
|
|
|
|
[role="_abstract"]
|
|
You can enable multi-queue functionality for interfaces configured with a VirtIO model.
|
|
|
|
.Procedure
|
|
|
|
. Set the `networkInterfaceMultiqueue` value to `true` in the `VirtualMachine` manifest file of your VM to enable multi-queue functionality:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: kubevirt.io/v1
|
|
kind: VM
|
|
spec:
|
|
domain:
|
|
devices:
|
|
networkInterfaceMultiqueue: true
|
|
----
|
|
|
|
. Save the `VirtualMachine` manifest file to apply your changes.
|