Hi.
I recently tried to create PersistentVolumeClaim with accessModes set to ReadWriteOncePod, but no lone listed version (even 24.0_preview) does nto supported it. Support chat wouldn't be able to resolve this issu either.
PersistentVolumeClaim is a new keyword, anounced in previous year (https://kubernetes.io/blog/2021/09/13/read-write-once-pod-access-mode-alpha/) and supported from Kubernetes 1.22 by the Google Docs. But Azure portal or kubectl both displaying error message:
The PersistentVolumeClaim "xnode-geth-data-volume-claim" is invalid: spec.accessModes: Unsupported value: "ReadWriteOncePod": supported values: "ReadOnlyMany", "ReadWriteMany", "ReadWriteOnce"
Google docs just says that it is available to use https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes
About the reason:
I have an application which exclusively using data folder and cannot share it with any another instances so this new access mode ReadWriteOncePod is exactly what I need. I already have an issue when AKS scheduled 2 pods per node and it was result in constnat looping restart of 2nd Pod in a same node.
Best Regards