When running a flow with Composio, I get the following error:
[Errno 30] Read-only file system: '.composio.lock'
It's because Composio tries to write .composio.lock under /app but in securityContext we have readOnlyRootFilesystem: true which disables writing under /app if no volume is created.
If I modify the securityContext with readOnlyRootFilesystem: false then it works correctly. Maybe this should be the default else Composio doesn't work and other users may not know why.