A persistentVolumeClaim (PVC) is created with the specification storageClass: "", and size requirements that cannot be satisfied by any existing persistentVolume.
Is this an action Kubernetes takes in this situation?
Solution: The PVC remains unbound until a persistentVolume that matches all requirements of the PVC becomes available.
Answer(s): A
Explanation:
= A persistentVolumeClaim (PVC) is a request for storage by a user. It is similar to a Pod. Pods consume node resources and PVCs consume PV resources. A PVC can specify a storage class, which is a way of requesting a certain quality of service for the volume. If the storage class is empty, it means the PVC does not have any specific storage class requirements and can be bound to any PV that satisfies its size and access mode. However, if there is no existing PV that matches the PVC's requirements, the PVC remains unbound until a suitable PV becomes available. This can happen either by manual provisioning by an administrator or by dynamic provisioning using StorageClasses.
Reference:
Persistent Volumes | Kubernetes
Storage Classes | Kubernetes
Configure a Pod to Use a PersistentVolume for Storage | Kubernetes
Reveal Solution Next Question