-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathseed.go
94 lines (79 loc) · 2.64 KB
/
seed.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright 2020 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package azure
import (
"context"
"fmt"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2020-06-01/network"
"k8s.io/klog/v2"
"k8s.io/kops/protokube/pkg/gossip"
)
type client interface {
ListVMScaleSets(ctx context.Context) ([]compute.VirtualMachineScaleSet, error)
ListVMSSNetworkInterfaces(ctx context.Context, vmScaleSetName string) ([]network.Interface, error)
}
var _ client = &Client{}
// SeedProvider is an Azure implementation of gossip.SeedProvider.
type SeedProvider struct {
client client
tags map[string]string
}
var _ gossip.SeedProvider = &SeedProvider{}
// NewSeedProvider returns a new SeedProvider.
func NewSeedProvider(client client, tags map[string]string) (*SeedProvider, error) {
return &SeedProvider{
client: client,
tags: tags,
}, nil
}
// GetSeeds returns a slice of strings used as seeds of Gossip.
// This follows the implementation of AWS and creates seeds from
// private IPs of VMs in the cluster.
func (p *SeedProvider) GetSeeds() ([]string, error) {
ctx := context.TODO()
vmsses, err := p.client.ListVMScaleSets(ctx)
if err != nil {
return nil, fmt.Errorf("error listing VM Scale Sets: %s", err)
}
var vmssNames []string
for _, vmss := range vmsses {
if p.isVMSSForCluster(&vmss) {
vmssNames = append(vmssNames, *vmss.Name)
}
}
klog.V(2).Infof("Found %d VM Scale Sets for the cluster (out of %d)", len(vmssNames), len(vmsses))
var seeds []string
for _, vmssName := range vmssNames {
ifaces, err := p.client.ListVMSSNetworkInterfaces(ctx, vmssName)
if err != nil {
return nil, fmt.Errorf("error listing VMSS network interfaces: %s", err)
}
for _, iface := range ifaces {
for _, i := range *iface.IPConfigurations {
seeds = append(seeds, *i.PrivateIPAddress)
}
}
}
return seeds, nil
}
func (p *SeedProvider) isVMSSForCluster(vmss *compute.VirtualMachineScaleSet) bool {
found := 0
for k, v := range vmss.Tags {
if p.tags[k] == *v {
found++
}
}
// TODO(kenji): Filter by ProvisioningState if necessary.
return found == len(p.tags)
}