Zanzana: Initial work to run openFGA as embedded or standalone service (#89211)

* Zanana: Initial work to run zanana as ebeddedn or standalone

* Add addr settings for when remote client is used.

* sync dependencies

* Lock mysql driver version
---------

Co-authored-by: Dan Cech <dcech@grafana.com>
This commit is contained in:
Karl Persson
2024-06-18 10:04:18 +02:00
committed by GitHub
co-authored by Dan Cech
parent d0cf8956e2
commit 606a74d0af
20 changed files with 421 additions and 79 deletions
+2
View File
@@ -7,12 +7,14 @@ const (
Core string = "core"
GrafanaAPIServer string = "grafana-apiserver"
StorageServer string = "storage-server"
ZanzanaServer string = "zanzana-server"
InstrumentationServer string = "instrumentation-server"
)
var dependencyMap = map[string][]string{
GrafanaAPIServer: {InstrumentationServer},
StorageServer: {InstrumentationServer},
ZanzanaServer: {InstrumentationServer},
Core: {},
All: {Core},
}