1
Your company is running a stateful application on GKE. You need to ensure that when a pod is rescheduled to a different node, it can still access its persistent data. What must you use?
PersistentVolume (PV) with a PersistentVolumeClaim (PVC)
Local SSD with node affinity
HostPath volumes
Cloud Storage FUSE
View Explanation
✓ Correct Answer: PersistentVolume (PV) with a PersistentVolumeClaim (PVC)Explanation:PVs and PVCs decouple storage from the pod lifecycle, ensuring that data persists and can be re-attached to the pod regardless of which node it runs on.