community-catalog icon indicating copy to clipboard operation
community-catalog copied to clipboard

Prometheus bad permissions when using volume driver

Open clayrisser opened this issue 7 years ago • 3 comments

The Prometheus service breaks when using a custom docker volume driver. Basically, the container does not have permission to write to the /prometheus folder. This is because root permission is needed to write to that folder when using a volume driver (specifically rancher-nfs in my case). The default user for the Prometheus container is nobody, hence the write permission error.

clayrisser avatar Apr 15 '18 16:04 clayrisser

I too have the same issue - Have tried both rancher-nfs and local volume-drivers

jriberg avatar Apr 20 '18 09:04 jriberg

The solution is to set user to root. You can see how I did it in my docker-compose.yml file.

https://github.com/codejamninja/rancher-catalog/blob/f8a6a66bb577797b2735cbc986ba17288930608f/templates/grafana/0/docker-compose.yml#L35

prometheus:
  image: prom/prometheus:v2.1.0
  user: root
# etc . . .

clayrisser avatar Apr 21 '18 01:04 clayrisser

My pull request at the link below fixes it. Hopefully, they accept it soon.

https://github.com/rancher/community-catalog/pull/777

clayrisser avatar Apr 21 '18 01:04 clayrisser