storage providers now default to exposing data servers (#90)

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Jörn Friedrich Dreyer
2020-02-12 21:17:21 +01:00
committed by GitHub
parent e5ec269522
commit 8b987e24b6
5 changed files with 14 additions and 6 deletions
+1
View File
@@ -160,6 +160,7 @@ func StorageHomeWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.BoolFlag{
Name: "expose-data-server",
Value: true,
Usage: "exposes a dedicated data server",
EnvVars: []string{"REVA_STORAGE_HOME_EXPOSE_DATA_SERVER"},
Destination: &cfg.Reva.StorageHome.ExposeDataServer,
+1
View File
@@ -160,6 +160,7 @@ func StorageOCWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.BoolFlag{
Name: "expose-data-server",
Value: true,
Usage: "exposes a dedicated data server",
EnvVars: []string{"REVA_STORAGE_OC_EXPOSE_DATA_SERVER"},
Destination: &cfg.Reva.StorageOC.ExposeDataServer,