Hide
= Removing `storageAccessMode` does not revert PVCs to `ReadWriteOnce`
After you configure the `storageAccessMode` field to `ReadWriteMany` in the `CheCluster` custom resource, removing the `storage.perUserStrategyPvcConfig.storageAccessMode` field does not revert the access mode for persistent volume claims (PVCs) to `ReadWriteOnce`.
To revert the access mode to `ReadWriteOnce`, you must explicitly set the value in the `storageAccessMode` field:
[source,yaml]
----
storage:
perUserStrategyPvcConfig:
storageAccessMode:
- ReadWriteOnce
pvcStrategy: per-user
----
Show
= Removing `storageAccessMode` does not revert PVCs to `ReadWriteOnce`
After you configure the `storageAccessMode` field to `ReadWriteMany` in the `CheCluster` custom resource, removing the `storage.perUserStrategyPvcConfig.storageAccessMode` field does not revert the access mode for persistent volume claims (PVCs) to `ReadWriteOnce`.
To revert the access mode to `ReadWriteOnce`, you must explicitly set the value in the `storageAccessMode` field:
[source,yaml]
----
storage:
perUserStrategyPvcConfig:
storageAccessMode:
- ReadWriteOnce
pvcStrategy: per-user
----