rancher / community-catalog

Catalog entries contributed by the community
385 stars 641 forks source link

Prometheus bad permissions when using volume driver #776

Open clayrisser opened 6 years ago

clayrisser commented 6 years ago

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.

jriberg commented 6 years ago

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

clayrisser commented 6 years ago

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 commented 6 years ago

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

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