dev privileges, db
[arvados.git] / services / boot / controller.go
index 953507f820f875b2c0e2d07d07717bc14c280913..4b3e249ac582083bb7be64818337eb5449202db5 100644 (file)
@@ -16,23 +16,29 @@ func (c *controller) Boot(ctx context.Context) error {
                        arvadosRepo,
                },
                Concurrent{
-                       &download{
-                               URL:  "https://releases.hashicorp.com/consul-template/0.18.0/consul-template_0.18.0_linux_amd64.zip",
-                               Dest: path.Join(cfg.UsrDir, "bin", "consul-template"),
-                               Size: 6912352,
-                               Mode: 0755,
+                       postgresql,
+                       Concurrent{
+                               &download{
+                                       URL:  "https://releases.hashicorp.com/consul-template/0.18.0/consul-template_0.18.0_linux_amd64.zip",
+                                       Dest: path.Join(cfg.UsrDir, "bin", "consul-template"),
+                                       Size: 6912352,
+                                       Mode: 0755,
+                               },
+                               consul,
+                       },
+                       Concurrent{
+                               vault,
+                               nomad,
                        },
-                       consul,
-               },
-               vault,
-               Concurrent{
-                       dispatchLocal,
-                       dispatchSLURM,
-                       gitHTTP,
-                       keepbalance,
-                       keepproxy,
-                       keepstore,
-                       websocket,
                },
+               // Concurrent{
+               //      dispatchLocal,
+               //      dispatchSLURM,
+               //      gitHTTP,
+               //      keepbalance,
+               //      keepproxy,
+               //      keepstore,
+               //      websocket,
+               // },
        }.Boot(ctx)
 }