nova-compute[755]: 2025-01-01 20:08:22.767 1 ERROR oslo_messaging.rpc.server [req-#######-######-####-############ ################################ ################################ - default default] Exception during message handling: nova.exception.ResizeError: Resize error: Unable to extend linked clone disk.7.3
The compute definition for any Availability Zone by default is set to use linked clones.
Linked clones cannot be live resized. See VMware Integrated OpenStack 7.3 Administration Guide pg 86
Change that Availability Zone to not use linked clones.
#viocli update novacompute <compute resource having issues> use_linked_clone: "false"For example:
spec: conf: nova_compute: DEFAULT: default_schedule_zone: <Availability Zone> enabled_filters: RetryFilter, AvailabilityZoneFilter, ComputeFilter, ComputeCapabilitiesFilter, ImagePropertiesFilter, ServerGroupAntiAffinityFilter, ServerGroupAffinityFilter, PciPassthroughFilter, AggregateInstanceExtraSpecsFilter host: compute-################ pci: passthrough_whitelist: type: multistring values: - '{"product_id": "*", "vendor_id": "*", "physical_network": "*"}' vmware: cluster_name: domain-################ datastore_regex: ################ host_ip: .VCenter:vcenter#:spec.hostname host_password: .VCenter:vcenter2:spec.password host_username: .VCenter:vcenter2:spec.username import_net_id: ################ insecure: .VCenter:vcenter#:spec.insecure network_passthrough: true pbm_default_policy: vSAN Default Storage Policy pbm_enabled: "true" tenant_vdc: true use_linked_clone: "false" <<<<< Add this line
Existing instances in that AZ will not be affected by this change.