-
Hi, I want to go for a helm deployment using the grafana operator. I want to deploy one grafana instance with a replication factor of two as well as multiple datasources and dashboards. What I am asking myself right now, is how to do persistent user management? On my current grafana instance I am using a postgres-DB to persist user credentials. What are the best practices to do this using the grafana operator helm chart? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should simply keep on using PostgreSQL. - The operator deploys (optionally) and configures a Grafana instance, it doesn't care much about storage backend. Though, the only way to reliably run an HA Grafana instance is to have a database backend, which you already have. |
Beta Was this translation helpful? Give feedback.
You should simply keep on using PostgreSQL. - The operator deploys (optionally) and configures a Grafana instance, it doesn't care much about storage backend. Though, the only way to reliably run an HA Grafana instance is to have a database backend, which you already have.