forked from kubernetes-retired/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws_manager.go
231 lines (199 loc) · 6.34 KB
/
aws_manager.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
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
/*
Copyright 2016 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 aws
import (
"fmt"
"io"
"sync"
"time"
"gopkg.in/gcfg.v1"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/golang/glog"
"k8s.io/apimachinery/pkg/util/wait"
provider_aws "k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
)
const (
operationWaitTimeout = 5 * time.Second
operationPollInterval = 100 * time.Millisecond
)
type asgInformation struct {
config *Asg
basename string
}
type autoScaling interface {
DescribeAutoScalingGroups(input *autoscaling.DescribeAutoScalingGroupsInput) (*autoscaling.DescribeAutoScalingGroupsOutput, error)
SetDesiredCapacity(input *autoscaling.SetDesiredCapacityInput) (*autoscaling.SetDesiredCapacityOutput, error)
TerminateInstanceInAutoScalingGroup(input *autoscaling.TerminateInstanceInAutoScalingGroupInput) (*autoscaling.TerminateInstanceInAutoScalingGroupOutput, error)
}
// AwsManager is handles aws communication and data caching.
type AwsManager struct {
asgs []*asgInformation
asgCache map[AwsRef]*Asg
service autoScaling
cacheMutex sync.Mutex
}
// CreateAwsManager constructs awsManager object.
func CreateAwsManager(configReader io.Reader) (*AwsManager, error) {
if configReader != nil {
var cfg provider_aws.CloudConfig
if err := gcfg.ReadInto(&cfg, configReader); err != nil {
glog.Errorf("Couldn't read config: %v", err)
return nil, err
}
}
service := autoscaling.New(session.New())
manager := &AwsManager{
asgs: make([]*asgInformation, 0),
service: service,
asgCache: make(map[AwsRef]*Asg),
}
go wait.Forever(func() {
manager.cacheMutex.Lock()
defer manager.cacheMutex.Unlock()
if err := manager.regenerateCache(); err != nil {
glog.Errorf("Error while regenerating Asg cache: %v", err)
}
}, time.Hour)
return manager, nil
}
// RegisterAsg registers asg in Aws Manager.
func (m *AwsManager) RegisterAsg(asg *Asg) {
m.cacheMutex.Lock()
defer m.cacheMutex.Unlock()
m.asgs = append(m.asgs, &asgInformation{
config: asg,
})
}
// GetAsgSize gets ASG size.
func (m *AwsManager) GetAsgSize(asgConfig *Asg) (int64, error) {
params := &autoscaling.DescribeAutoScalingGroupsInput{
AutoScalingGroupNames: []*string{aws.String(asgConfig.Name)},
MaxRecords: aws.Int64(1),
}
groups, err := m.service.DescribeAutoScalingGroups(params)
if err != nil {
return -1, err
}
if len(groups.AutoScalingGroups) < 1 {
return -1, fmt.Errorf("Unable to get first autoscaling.Group for %s", asgConfig.Name)
}
asg := *groups.AutoScalingGroups[0]
return *asg.DesiredCapacity, nil
}
// SetAsgSize sets ASG size.
func (m *AwsManager) SetAsgSize(asg *Asg, size int64) error {
params := &autoscaling.SetDesiredCapacityInput{
AutoScalingGroupName: aws.String(asg.Name),
DesiredCapacity: aws.Int64(size),
HonorCooldown: aws.Bool(false),
}
glog.V(0).Infof("Setting asg %s size to %d", asg.Id(), size)
_, err := m.service.SetDesiredCapacity(params)
if err != nil {
return err
}
return nil
}
// DeleteInstances deletes the given instances. All instances must be controlled by the same ASG.
func (m *AwsManager) DeleteInstances(instances []*AwsRef) error {
if len(instances) == 0 {
return nil
}
commonAsg, err := m.GetAsgForInstance(instances[0])
if err != nil {
return err
}
for _, instance := range instances {
asg, err := m.GetAsgForInstance(instance)
if err != nil {
return err
}
if asg != commonAsg {
return fmt.Errorf("Connot delete instances which don't belong to the same ASG.")
}
}
for _, instance := range instances {
params := &autoscaling.TerminateInstanceInAutoScalingGroupInput{
InstanceId: aws.String(instance.Name),
ShouldDecrementDesiredCapacity: aws.Bool(true),
}
resp, err := m.service.TerminateInstanceInAutoScalingGroup(params)
if err != nil {
return err
}
glog.V(4).Infof(*resp.Activity.Description)
}
return nil
}
// GetAsgForInstance returns AsgConfig of the given Instance
func (m *AwsManager) GetAsgForInstance(instance *AwsRef) (*Asg, error) {
m.cacheMutex.Lock()
defer m.cacheMutex.Unlock()
if config, found := m.asgCache[*instance]; found {
return config, nil
}
if err := m.regenerateCache(); err != nil {
return nil, fmt.Errorf("Error while looking for ASG for instance %+v, error: %v", *instance, err)
}
if config, found := m.asgCache[*instance]; found {
return config, nil
}
// instance does not belong to any configured ASG
return nil, nil
}
func (m *AwsManager) regenerateCache() error {
newCache := make(map[AwsRef]*Asg)
for _, asg := range m.asgs {
glog.V(4).Infof("Regenerating ASG information for %s", asg.config.Name)
group, err := m.getAutoscalingGroup(asg.config.Name)
if err != nil {
return err
}
for _, instance := range group.Instances {
ref := AwsRef{Name: *instance.InstanceId}
newCache[ref] = asg.config
}
}
m.asgCache = newCache
return nil
}
func (m *AwsManager) getAutoscalingGroup(name string) (*autoscaling.Group, error) {
params := &autoscaling.DescribeAutoScalingGroupsInput{
AutoScalingGroupNames: []*string{aws.String(name)},
MaxRecords: aws.Int64(1),
}
groups, err := m.service.DescribeAutoScalingGroups(params)
if err != nil {
glog.V(4).Infof("Failed ASG info request for %s: %v", name, err)
return nil, err
}
if len(groups.AutoScalingGroups) < 1 {
return nil, fmt.Errorf("Unable to get first autoscaling.Group for %s", name)
}
return groups.AutoScalingGroups[0], nil
}
// GetAsgNodes returns Asg nodes.
func (m *AwsManager) GetAsgNodes(asg *Asg) ([]string, error) {
result := make([]string, 0)
group, err := m.getAutoscalingGroup(asg.Name)
if err != nil {
return []string{}, err
}
for _, instance := range group.Instances {
result = append(result,
fmt.Sprintf("aws:///%s/%s", *instance.AvailabilityZone, *instance.InstanceId))
}
return result, nil
}