mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
23 lines
837 B
Plaintext
23 lines
837 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * virt/virtual_machines/advanced_vm_management/virt-understanding-aaq-operator.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="virt-enabling-aaq-operator_{context}"]
|
|
= Enabling the AAQ Operator
|
|
|
|
To deploy the AAQ Operator, set the `enableApplicationAwareQuota` field value to `true` in the `HyperConverged` custom resource (CR).
|
|
|
|
.Prerequisites
|
|
* You have access to the cluster as a user with `cluster-admin` privileges.
|
|
* You have installed the OpenShift CLI (`oc`).
|
|
|
|
.Procedure
|
|
* Set the `enableApplicationAwareQuota` field value to `true` in the `HyperConverged` CR by running the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc patch hco kubevirt-hyperconverged -n openshift-cnv \
|
|
--type json -p '[{"op": "add", "path": "/spec/enableApplicationAwareQuota", "value": true}]'
|
|
----
|