-
Notifications
You must be signed in to change notification settings - Fork 9
/
ingress.go
63 lines (54 loc) · 1.81 KB
/
ingress.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
57
58
59
60
61
62
63
// 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"
"namespacelabs.dev/foundation/internal/runtime/kubernetes"
"namespacelabs.dev/foundation/schema"
"namespacelabs.dev/foundation/schema/orchestration"
"namespacelabs.dev/foundation/std/cfg"
"namespacelabs.dev/foundation/std/execution"
)
func Ingress() ClusterStage {
return ClusterStage{
Pre: func(ch chan *orchestration.Event) {
ch <- &orchestration.Event{
ResourceId: "ingress",
ResourceLabel: "Setup Ingress Controller",
Category: "Preparing cluster",
Ready: orchestration.Event_NOT_READY,
Stage: orchestration.Event_WAITING,
}
},
Post: func(ch chan *orchestration.Event) {
ch <- &orchestration.Event{
ResourceId: "ingress",
Ready: orchestration.Event_READY,
Stage: orchestration.Event_DONE,
}
},
Run: func(ctx context.Context, env cfg.Context, devhost *schema.DevHost_ConfigureEnvironment, kube *kubernetes.Cluster, ch chan *orchestration.Event) error {
return PrepareIngressInKube(ctx, env, kube)
},
}
}
func PrepareIngressInKube(ctx context.Context, env cfg.Context, kube *kubernetes.Cluster) error {
ingress, err := kubernetes.ClusterIngress(kube)
if err != nil {
return err
}
ingressDefs, err := ingress.Ensure(ctx)
if err != nil {
return err
}
g := execution.NewPlan(ingressDefs...)
// Don't wait for the deployment to complete.
if err := execution.RawExecute(ctx, "ingress.deploy", execution.ExecuteOpts{
ContinueOnErrors: true,
}, g, execution.FromContext(env), runtime.ClusterInjection.With(kube)); err != nil {
return err
}
return nil
}