The problem seems to have been solved a long time ago, as the answer and the comments does not provide real solutions, I would like to get some help from experienced users
Your Deployment yaml shows 5 replicas, which will not work with GCE PD in ReadWriteOnce
mode. GCE PD can only be attached to multiple nodes in ReadOnlyMany
mode.
If you need shared, writable storage across all replicas, then you should look into a multi-writer solution like NFS or Gluster.
If you want each replica to have its own disk, then you can use StatefulSets, which will have a PVC per replica.