Open cgaege opened 3 years ago
Currently the persistent volume claim resourcevol is created with access mode readWriteOnce which does not allow read-write access by multiple pods. We should switch to access mode readWriteMany instead.
resourcevol
readWriteOnce
readWriteMany
Looke like GKE doesn't support accessMode RWX out of the box:
RWX
https://medium.com/@Sushil_Kumar/readwritemany-persistent-volumes-in-google-kubernetes-engine-a0b93e203180
Currently the persistent volume claim
resourcevol
is created with access modereadWriteOnce
which does not allow read-write access by multiple pods. We should switch to access modereadWriteMany
instead.