Describe the bug
I am trying to install CouchDB 4.5.3 on an Openshift cluster, using helm chart, with persisten volumes but pods go into CrashLoopBackOff because of some permission error. This is the log:
/docker-entrypoint.sh: line 89: /opt/couchdb/.erlang.cookie: Permission denied
Version of Helm and Kubernetes:
Helm v3.16.2, Kubernetes v1.28.7+6e2789b
What happened:
Install command:
helm install couchdb couchdb/couchdb --version=4.5.3 --set allowAdminParty=true --set persistentVolume.enabled=true --set couchdbConfig.couchdb.uuid=$(curl https://www.uuidgenerator.net/api/version4 2>/dev/null | tr -d -)
Every resource seems to be created ok, but the 3 pods got into CrashLoopBackOff state because of the following error:
/docker-entrypoint.sh: line 89: /opt/couchdb/.erlang.cookie: Permission denied
How to reproduce it (as minimally and precisely as possible):
Describe the bug I am trying to install CouchDB 4.5.3 on an Openshift cluster, using helm chart, with persisten volumes but pods go into CrashLoopBackOff because of some permission error. This is the log:
/docker-entrypoint.sh: line 89: /opt/couchdb/.erlang.cookie: Permission denied
Version of Helm and Kubernetes: Helm v3.16.2, Kubernetes v1.28.7+6e2789b
What happened: Install command:
helm install couchdb couchdb/couchdb --version=4.5.3 --set allowAdminParty=true --set persistentVolume.enabled=true --set couchdbConfig.couchdb.uuid=$(curl https://www.uuidgenerator.net/api/version4 2>/dev/null | tr -d -)
Every resource seems to be created ok, but the 3 pods got into CrashLoopBackOff state because of the following error:/docker-entrypoint.sh: line 89: /opt/couchdb/.erlang.cookie: Permission denied
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know: Init-copy container log:
-rw-r--r-- 1 1001090000 1001090000 225 Oct 28 13:01 seedlist.ini -rw-r--r-- 1 1001090000 1001090000 106 Oct 28 13:01 chart.ini
Couchdb container log:
/docker-entrypoint.sh: line 89: /opt/couchdb/.erlang.cookie: Permission denied
Allready tried without persistentce and got the same error.