-
Notifications
You must be signed in to change notification settings - Fork 9
/
orchestrator.go
56 lines (49 loc) · 1.79 KB
/
orchestrator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package prepare
import (
"context"
"namespacelabs.dev/foundation/internal/runtime/kubernetes"
"namespacelabs.dev/foundation/orchestration"
"namespacelabs.dev/foundation/schema"
orchpb "namespacelabs.dev/foundation/schema/orchestration"
"namespacelabs.dev/foundation/std/cfg"
"namespacelabs.dev/foundation/std/tasks"
)
func Orchestrator() ClusterStage {
return ClusterStage{
Pre: func(ch chan *orchpb.Event) {
ch <- &orchpb.Event{
ResourceId: "orchestrator",
ResourceLabel: "Deploy Namespace Orchestrator",
Category: "Preparing cluster",
Ready: orchpb.Event_NOT_READY,
Stage: orchpb.Event_WAITING,
}
},
Post: func(ch chan *orchpb.Event) {
ch <- &orchpb.Event{
ResourceId: "orchestrator",
Ready: orchpb.Event_READY,
Stage: orchpb.Event_DONE,
}
},
Run: func(ctx context.Context, env cfg.Context, devhost *schema.DevHost_ConfigureEnvironment, kube *kubernetes.Cluster, ch chan *orchpb.Event) error {
return PrepareOrchestratorInKube(ctx, env, devhost, kube)
},
}
}
func PrepareOrchestratorInKube(ctx context.Context, env cfg.Context, devhost *schema.DevHost_ConfigureEnvironment, kube *kubernetes.Cluster) error {
return tasks.Action("orchestrator.prepare").Run(ctx, func(ctx context.Context) error {
config, err := cfg.MakeConfigurationCompat(env, env.Workspace(), &schema.DevHost{
Configure: []*schema.DevHost_ConfigureEnvironment{devhost}}, env.Environment())
if err != nil {
return err
}
if _, err := orchestration.PrepareOrchestrator(ctx, config, kube, false); err != nil {
return err
}
return nil
})
}