community-catalog
community-catalog copied to clipboard
Prometheus bad permissions when using volume driver
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.
I too have the same issue - Have tried both rancher-nfs and local volume-drivers
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 . . .
My pull request at the link below fixes it. Hopefully, they accept it soon.
https://github.com/rancher/community-catalog/pull/777