Dolibarr on Kubernetes (OVH)

hi, i wonder if you have assigned the right permission to systemd-coredump on the share on your host.
you can easily check from the bottom up by entering the container and touch a file on /var/www/html/ as root then also login as your html server user and try to write a file with that account.
you can also check the permissions as seen from the container with and without the mount

a few lines as exemple:
from the host:
ls -lah /path/to/the/mounted/persistent/volume/
touch */path/to/the/mounted/persistent/volume/*test-host (this depends of the permission of your user or do ‘su’ or ‘sudo su -’ )
ls -lah /path/to/the/mounted/persistent/volume/
→ next to repeat before and after the mount
kubectl exec -it dolibar-pod-123456 – bash
ls -lah /var/www/html/
touch /var/www/html/test-containerd
su -s /bin/sh www-data ## or the user your http server uses // from root
touch /var/www/html/test-wwwdata
ls -lah /var/www/html/

hope this helps or else paste the yaml of the dolibar pod with the mounts and the results of the above commands