Cannot create H2 db on my cluster

Hi all,
I have some issue when trying to deploy the run-7.15.0 version of camunda.
Locally, I can create a docker image by using the following command =>

docker pull camunda/camunda-bpm-platform:run-7.0.15
docker run -d --name camunda -p 8080:8080 camunda/camunda-bpm-platform:run-7.0.15

But when I try to deploy in K8s, cluster, I have following error :
=> “org.h2.jdbc.JdbcSQLException: Error while creating file “/camunda/camunda-h2-default” [90062-190]”

An idea? Could it be a write access problem on my cluster?

Thank you in advance

I’m no K8s expert, but that does look suspiciously like a write-permission problem. The leading / in the path could very well be the problem, as that would be an absolute path, starting at the root of the filesystem, which is typically restricted.

dg

Thank you @davidgs for your reply, I think it’s write permission problem

1 Like