ReadOnlyMany perms for storageclass

Hi,

Is it required to grant ReadWriteOnce/ReadWriteMany perms for the storageclass or can I restrict perms to ReadOnlyMany?

Any help here?

Is this in reference to the postgres PVC or the projects persistence PVC (or both)?

postgres PVC can be readwriteonce, since it is only mounted to the postgres pod

the projects_persistence PVC can only be readwriteonce if there is only a single AWX pod

ReadOnlyMany is unlikely to work (awx will need write access projects_persistence PVC, and postgres needs write access to postgres PVC)

Hope that helps,

AWX Team

This helps. I will use ReadWriteOnce in that case.