-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathalicloud_cloud_provider.go
More file actions
264 lines (227 loc) · 9.02 KB
/
Copy pathalicloud_cloud_provider.go
File metadata and controls
264 lines (227 loc) · 9.02 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
Copyright 2018 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 alicloud
import (
"context"
"fmt"
"os"
"strings"
apiv1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"k8s.io/client-go/informers"
klog "k8s.io/klog/v2"
"sigs.k8s.io/cluster-autoscaler/pkg/cloudprovider"
"sigs.k8s.io/cluster-autoscaler/pkg/cloudprovider/builder"
"sigs.k8s.io/cluster-autoscaler/pkg/config/dynamic"
coreoptions "sigs.k8s.io/cluster-autoscaler/pkg/core/options"
"sigs.k8s.io/cluster-autoscaler/pkg/utils/errors"
"sigs.k8s.io/cluster-autoscaler/pkg/utils/gpu"
)
// ProviderName is the cloud provider name for this provider.
const ProviderName = "alicloud"
func init() {
builder.RegisterCloudProvider(ProviderName, func(opts *coreoptions.AutoscalerOptions, do cloudprovider.NodeGroupDiscoveryOptions, rl *cloudprovider.ResourceLimiter, informerFactory informers.SharedInformerFactory) cloudprovider.CloudProvider {
return BuildAlicloud(opts, do, rl)
})
builder.SetDefaultCloudProvider(ProviderName)
}
const (
// GPULabel is the label added to nodes with GPU resource.
GPULabel = "aliyun.accelerator/nvidia_name"
)
var (
availableGPUTypes = map[string]struct{}{
"Tesla-P4": {},
"M40": {},
"P100": {},
"V100": {},
}
)
type aliCloudProvider struct {
manager *AliCloudManager
asgs []*Asg
resourceLimiter *cloudprovider.ResourceLimiter
}
// BuildAliCloudProvider builds CloudProvider implementation for AliCloud.
func BuildAliCloudProvider(manager *AliCloudManager, discoveryOpts cloudprovider.NodeGroupDiscoveryOptions, resourceLimiter *cloudprovider.ResourceLimiter) (cloudprovider.CloudProvider, error) {
// TODO add discoveryOpts parameters check.
if discoveryOpts.StaticDiscoverySpecified() {
return buildStaticallyDiscoveringProvider(manager, discoveryOpts.NodeGroupSpecs, resourceLimiter)
}
if discoveryOpts.AutoDiscoverySpecified() {
return nil, fmt.Errorf("only support static discovery scaling group in alicloud for now")
}
return nil, fmt.Errorf("failed to build alicloud provider: node group specs must be specified")
}
func buildStaticallyDiscoveringProvider(manager *AliCloudManager, specs []string, resourceLimiter *cloudprovider.ResourceLimiter) (*aliCloudProvider, error) {
acp := &aliCloudProvider{
manager: manager,
asgs: make([]*Asg, 0),
resourceLimiter: resourceLimiter,
}
for _, spec := range specs {
if err := acp.addNodeGroup(spec); err != nil {
klog.Warningf("failed to add node group to alicloud provider with spec: %s", spec)
return nil, err
}
}
return acp, nil
}
// add node group defined in string spec. Format:
// minNodes:maxNodes:asgName
func (ali *aliCloudProvider) addNodeGroup(spec string) error {
asg, err := buildAsgFromSpec(spec, ali.manager)
if err != nil {
klog.Errorf("failed to build ASG from spec,because of %s", err.Error())
return err
}
ali.addAsg(asg)
return nil
}
// add and register an asg to this cloud provider
func (ali *aliCloudProvider) addAsg(asg *Asg) {
ali.asgs = append(ali.asgs, asg)
ali.manager.RegisterAsg(asg)
}
func (ali *aliCloudProvider) Name() string {
return ProviderName
}
// GPULabel returns the label added to nodes with GPU resource.
func (ali *aliCloudProvider) GPULabel(ctx context.Context) string {
return GPULabel
}
// GetAvailableGPUTypes return all available GPU types cloud provider supports
func (ali *aliCloudProvider) GetAvailableGPUTypes(ctx context.Context) map[string]struct{} {
return availableGPUTypes
}
// GetNodeGpuConfig returns the label, type and resource name for the GPU added to node. If node doesn't have
// any GPUs, it returns nil.
func (ali *aliCloudProvider) GetNodeGpuConfig(ctx context.Context, node *apiv1.Node) *cloudprovider.GpuConfig {
return gpu.GetNodeGPUFromCloudProvider(context.TODO(), ali, node)
}
func (ali *aliCloudProvider) NodeGroups(ctx context.Context) []cloudprovider.NodeGroup {
result := make([]cloudprovider.NodeGroup, 0, len(ali.asgs))
for _, asg := range ali.asgs {
result = append(result, asg)
}
return result
}
// NodeGroupForNode returns the node group for the given node.
func (ali *aliCloudProvider) NodeGroupForNode(ctx context.Context, node *apiv1.Node) (cloudprovider.NodeGroup, error) {
if len(node.Spec.ProviderID) == 0 {
klog.Warningf("Node %v has no providerId", node.Name)
return nil, nil
}
instanceId, err := ecsInstanceIdFromProviderId(node.Spec.ProviderID)
if err != nil {
klog.Errorf("failed to get instance Id from provider Id:%s,because of %s", node.Spec.ProviderID, err.Error())
return nil, err
}
asg, err := ali.manager.GetAsgForInstance(instanceId)
if err != nil {
return nil, err
}
if asg == nil {
return nil, nil
}
return asg, nil
}
// HasInstance returns whether a given node has a corresponding instance in this cloud provider
func (ali *aliCloudProvider) HasInstance(context.Context, *apiv1.Node) (bool, error) {
return true, cloudprovider.ErrNotImplemented
}
// Pricing returns pricing model for this cloud provider or error if not available.
func (ali *aliCloudProvider) Pricing(ctx context.Context) (cloudprovider.PricingModel, errors.AutoscalerError) {
return nil, cloudprovider.ErrNotImplemented
}
// GetAvailableMachineTypes get all machine types that can be requested from the cloud provider.
func (ali *aliCloudProvider) GetAvailableMachineTypes(ctx context.Context) ([]string, error) {
return []string{}, nil
}
// NewNodeGroup builds a theoretical node group based on the node definition provided. The node group is not automatically
// created on the cloud provider side. The node group is not returned by NodeGroups() until it is created.
func (ali *aliCloudProvider) NewNodeGroup(ctx context.Context, machineType string, labels map[string]string, systemLabels map[string]string, taints []apiv1.Taint, extraResources map[string]resource.Quantity) (cloudprovider.NodeGroup, error) {
return nil, cloudprovider.ErrNotImplemented
}
// GetResourceLimiter returns struct containing limits (max, min) for resources (cores, memory etc.).
func (ali *aliCloudProvider) GetResourceLimiter(ctx context.Context) (*cloudprovider.ResourceLimiter, error) {
return ali.resourceLimiter, nil
}
// Refresh is called before every main loop and can be used to dynamically update cloud provider state.
// In particular the list of node groups returned by NodeGroups can change as a result of CloudProvider.Refresh().
func (ali *aliCloudProvider) Refresh(ctx context.Context) error {
return nil
}
// Cleanup stops the go routine that is handling the current view of the ASGs in the form of a cache
func (ali *aliCloudProvider) Cleanup(ctx context.Context) error {
return nil
}
// AliRef contains a reference to ECS instance or .
type AliRef struct {
ID string
Region string
}
// ECSInstanceIdFromProviderId must be in format: `REGION.INSTANCE_ID`
func ecsInstanceIdFromProviderId(id string) (string, error) {
parts := strings.Split(id, ".")
if len(parts) < 2 {
return "", fmt.Errorf("AliCloud: unexpected ProviderID format, providerID=%s", id)
}
return parts[1], nil
}
func buildAsgFromSpec(value string, manager *AliCloudManager) (*Asg, error) {
spec, err := dynamic.SpecFromString(value, true)
if err != nil {
return nil, fmt.Errorf("failed to parse node group spec: %v", err)
}
// check auto scaling group is exists or not
_, err = manager.aService.getScalingGroupByID(spec.Name)
if err != nil {
klog.Errorf("your scaling group: %s does not exist", spec.Name)
return nil, err
}
asg := buildAsg(manager, spec.MinSize, spec.MaxSize, spec.Name, manager.cfg.getRegion())
return asg, nil
}
func buildAsg(manager *AliCloudManager, minSize int, maxSize int, id string, regionId string) *Asg {
return &Asg{
manager: manager,
minSize: minSize,
maxSize: maxSize,
regionId: regionId,
id: id,
}
}
// BuildAlicloud returns alicloud provider
func BuildAlicloud(opts *coreoptions.AutoscalerOptions, do cloudprovider.NodeGroupDiscoveryOptions, rl *cloudprovider.ResourceLimiter) cloudprovider.CloudProvider {
var aliManager *AliCloudManager
var aliError error
if opts.CloudConfig != "" {
config, fileErr := os.Open(opts.CloudConfig)
if fileErr != nil {
klog.Fatalf("Couldn't open cloud provider configuration %s: %#v", opts.CloudConfig, fileErr)
}
defer config.Close()
aliManager, aliError = CreateAliCloudManager(config)
} else {
aliManager, aliError = CreateAliCloudManager(nil)
}
if aliError != nil {
klog.Fatalf("Failed to create Alicloud Manager: %v", aliError)
}
cloudProvider, err := BuildAliCloudProvider(aliManager, do, rl)
if err != nil {
klog.Fatalf("Failed to create Alicloud cloud provider: %v", err)
}
return cloudProvider
}