The pod template in an RC contains a single claim name, so all pods use the same claim. This is fine for shared storage (with many writers), but obviously does not work for GCE with writers but *can* if they are all readers (GCE allows ReadOnlyMany).
There isn't yet a technical design for pods to get distinct volumes and to keep those same volumes upon pod destruction/creation.
"Retain" is the default policy for a PV. A recycler was not implemented for GCE. A Deleter will be implemented with dynamic provisioning and allow you to set the "Delete" policy for a PV. Until then, you would need to script the deletion of those volumes in GCE if you want that operation automated.