-
Notifications
You must be signed in to change notification settings - Fork 9
/
gke.go
49 lines (43 loc) · 1.56 KB
/
gke.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
// 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"
"fmt"
"namespacelabs.dev/foundation/internal/build/registry"
"namespacelabs.dev/foundation/internal/parsing/devhost"
"namespacelabs.dev/foundation/internal/runtime/kubernetes/client"
"namespacelabs.dev/foundation/schema"
"namespacelabs.dev/foundation/schema/orchestration"
"namespacelabs.dev/foundation/std/cfg"
"namespacelabs.dev/foundation/universe/gcp/gke"
)
func PrepareGkeCluster(clusterName string, experimentalGCLB bool) Stage {
return Stage{
Pre: func(ch chan *orchestration.Event) {
ch <- &orchestration.Event{
Category: "Google Cloud",
ResourceId: "gke-cluster",
Scope: fmt.Sprintf("Configure GKE Cluster %q", clusterName), // XXX remove soon.
ResourceLabel: fmt.Sprintf("Configure GKE Cluster %q", clusterName),
}
},
Run: func(ctx context.Context, env cfg.Context, ch chan *orchestration.Event) (*schema.DevHost_ConfigureEnvironment, error) {
ch <- &orchestration.Event{
ResourceId: "gke-cluster",
Ready: orchestration.Event_READY,
Stage: orchestration.Event_DONE,
}
ingressClass := "nginx"
if experimentalGCLB {
ingressClass = "gclb"
}
return devhost.MakeConfiguration(
&client.HostEnv{Provider: "gcp/gke", IngressClass: ingressClass},
®istry.Provider{Provider: "gcp/artifactregistry"},
&gke.Cluster{Name: clusterName},
)
},
}
}