diff --git a/modules/virt-overriding-default-fs-overhead-value.adoc b/modules/virt-overriding-default-fs-overhead-value.adoc index eb8ad3b3c5cc..fb50279a819b 100644 --- a/modules/virt-overriding-default-fs-overhead-value.adoc +++ b/modules/virt-overriding-default-fs-overhead-value.adoc @@ -6,7 +6,7 @@ [id="virt-overriding-default-fs-overhead-value_{context}"] = Overriding the default file system overhead value -Change the amount of persistent volume claim (PVC) space that the {VirtProductName} reserves for file system overhead by editing the `spec.config.filesystemOverhead` attribute of the `HCO` object. +Change the amount of persistent volume claim (PVC) space that the {VirtProductName} reserves for file system overhead by editing the `spec.filesystemOverhead` attribute of the `HCO` object. .Prerequisites @@ -21,17 +21,16 @@ Change the amount of persistent volume claim (PVC) space that the {VirtProductNa $ oc edit hco -n openshift-cnv kubevirt-hyperconverged ---- -. Edit the `spec.config.filesystemOverhead` fields, populating them with your chosen values: +. Edit the `spec.filesystemOverhead` fields, populating them with your chosen values: + [source,yaml] ---- # ... spec: - config: - filesystemOverhead: - global: "" <1> - storageClass: - : "" <2> + filesystemOverhead: + global: "" <1> + storageClass: + : "" <2> ---- <1> The default file system overhead percentage used for any storage classes that do not already have a set value. For example, `global: "0.07"` reserves 7% of the PVC for file system overhead. <2> The file system overhead percentage for the specified storage class. For example, `mystorageclass: "0.04"` changes the default overhead value for PVCs in the `mystorageclass` storage class to 4%.