This alert fires when a Containerized Data Importer (CDI) storage profile is incomplete.
If a storage profile is incomplete, the CDI cannot infer persistent volume claim
(PVC) fields, such as volumeMode
and accessModes
, which are required to
create a virtual machine (VM) disk.
The CDI cannot create a VM disk on the PVC.
Identify the incomplete storage profile:
$ kubectl get storageprofile <storage_class>
Add the missing storage profile information:
$ kubectl patch storageprofile local --type=merge -p '{"spec": \
{"claimPropertySets": [{"accessModes": ["ReadWriteOnce"], \
"volumeMode": "Filesystem"}]}}'
See Empty profiles and User defined profiles for more details about storage profiles.
If you cannot resolve the issue, see the following resources: