Professional Cloud Developer Exam QuestionsBrowse all questions from this exam

Professional Cloud Developer Exam - Question 280


You recently deployed an application to GKE where Pods are writing files to a Compute Engine persistent disk. You have created a PersistentVolumeClaim (PVC) and a PersistentVolume (PV) object on Kubernetes for the disk, and you reference the PVC in the deployment manifest file.

You recently expanded the size of the persistent disk because the application has used up almost all of the disk space. You have logged on to one of the Pods, and you notice that the disk expansion is not visible in the container file system. What should you do?

Show Answer
Correct Answer:

Discussion

2 comments
Sign in to comment
anshad666Option: C
Oct 11, 2024

To extend storage space in GKE, you need to update the PersistentVolumeClaim (PVC) to request a larger volume size; this will trigger the creation of a new PersistentVolume (PV) with the desired capacity if your StorageClass is configured for dynamic provisioning

09bd94bOption: C
Feb 28, 2025

C is correct