A developer on a CKAD-scoped team needs durable storage for an app and starts drafting a PersistentVolume and StorageClass. What responsibility boundary should they follow?
Select an answer to reveal the explanation.
Short Explanation
Think apartment lease versus owning the building—developers ask for a PVC (the lease), admins provision PVs and StorageClasses (the building). Don’t spend app time authoring cluster storage plumbing.
Full Explanation
In the CKAD application-developer scope, workloads consume storage through PersistentVolumeClaims. PersistentVolumes and StorageClasses are typically provisioned and governed by cluster administrators (CKA-oriented concerns). Embedding PV or StorageClass management in app manifests crosses that responsibility wall.