-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.go
68 lines (59 loc) · 1.42 KB
/
setup.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
64
65
66
67
68
package main
import (
"context"
"fmt"
"github.com/lovi-cloud/go-os-brick/osbrick"
dspb "github.com/lovi-cloud/satelit/api/satelit_datastore"
pb "github.com/lovi-cloud/teleskop/protoc/agent"
)
func (a *agent) setup(ctx context.Context, hostname, endpoint, parentInterfaceName string) error {
resp, err := a.datastoreClient.ListBridge(ctx, &dspb.ListBridgeRequest{})
if err != nil {
return err
}
for _, bridge := range resp.Bridges {
_, err = a.AddBridge(ctx, &pb.AddBridgeRequest{
Name: bridge.Name,
MetadataCidr: bridge.MetadataCidr,
InternalOnly: bridge.InternalOnly,
})
if err != nil {
return err
}
if bridge.InternalOnly {
continue
}
_, err = a.AddVLANInterface(ctx, &pb.AddVLANInterfaceRequest{
VlanId: bridge.VlanId,
ParentInterface: parentInterfaceName,
})
if err != nil {
return err
}
_, err = a.AddInterfaceToBridge(ctx, &pb.AddInterfaceToBridgeRequest{
Bridge: bridge.Name,
Interface: fmt.Sprintf("%s.%d", parentInterfaceName, bridge.VlanId),
})
if err != nil {
return err
}
}
numaNodes, err := GetLocalNUMANodes()
if err != nil {
return err
}
iqn, err := osbrick.GetIQN(ctx)
if err != nil {
return err
}
_, err = a.datastoreClient.RegisterTeleskopAgent(ctx, &dspb.RegisterTeleskopAgentRequest{
Hostname: hostname,
Endpoint: endpoint,
Iqn: iqn,
Nodes: numaNodes,
})
if err != nil {
return err
}
return nil
}