-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathautoscalinglifecyclehook.go
168 lines (140 loc) · 5.18 KB
/
autoscalinglifecyclehook.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
/*
Copyright 2019 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 awstasks
import (
"fmt"
"github.com/aws/aws-sdk-go/service/autoscaling"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
"k8s.io/kops/upup/pkg/fi/cloudup/cloudformation"
"k8s.io/kops/upup/pkg/fi/cloudup/terraform"
"k8s.io/kops/upup/pkg/fi/cloudup/terraformWriter"
)
// +kops:fitask
type AutoscalingLifecycleHook struct {
ID *string
Name *string
Lifecycle fi.Lifecycle
// HookName is the name of the lifecycle hook.
// It needs to be unique within the autoscaling group.
// If not set, Name will be used.
HookName *string
AutoscalingGroup *AutoscalingGroup
DefaultResult *string
HeartbeatTimeout *int64
LifecycleTransition *string
}
var _ fi.CompareWithID = &AutoscalingLifecycleHook{}
func (h *AutoscalingLifecycleHook) CompareWithID() *string {
return h.Name
}
func (h *AutoscalingLifecycleHook) Find(c *fi.Context) (*AutoscalingLifecycleHook, error) {
cloud := c.Cloud.(awsup.AWSCloud)
request := &autoscaling.DescribeLifecycleHooksInput{
AutoScalingGroupName: h.AutoscalingGroup.Name,
LifecycleHookNames: []*string{h.GetHookName()},
}
response, err := cloud.Autoscaling().DescribeLifecycleHooks(request)
if err != nil {
return nil, fmt.Errorf("error listing ASG Lifecycle Hooks: %v", err)
}
if response == nil || len(response.LifecycleHooks) == 0 {
return nil, nil
}
if len(response.LifecycleHooks) > 1 {
return nil, fmt.Errorf("found multiple ASG Lifecycle Hooks with the same name")
}
hook := response.LifecycleHooks[0]
actual := &AutoscalingLifecycleHook{
ID: h.Name,
Name: h.Name,
HookName: h.HookName,
Lifecycle: h.Lifecycle,
AutoscalingGroup: h.AutoscalingGroup,
DefaultResult: hook.DefaultResult,
HeartbeatTimeout: hook.HeartbeatTimeout,
LifecycleTransition: hook.LifecycleTransition,
}
return actual, nil
}
func (h *AutoscalingLifecycleHook) Run(c *fi.Context) error {
return fi.DefaultDeltaRunMethod(h, c)
}
func (_ *AutoscalingLifecycleHook) CheckChanges(a, e, changes *AutoscalingLifecycleHook) error {
if a == nil {
if e.Name == nil {
return field.Required(field.NewPath("Name"), "")
}
if e.AutoscalingGroup == nil {
return field.Required(field.NewPath("AutoScalingGroupName"), "")
}
}
return nil
}
func (*AutoscalingLifecycleHook) RenderAWS(t *awsup.AWSAPITarget, a, e, changes *AutoscalingLifecycleHook) error {
if changes != nil {
request := &autoscaling.PutLifecycleHookInput{
AutoScalingGroupName: e.AutoscalingGroup.Name,
DefaultResult: e.DefaultResult,
HeartbeatTimeout: e.HeartbeatTimeout,
LifecycleHookName: e.GetHookName(),
LifecycleTransition: e.LifecycleTransition,
}
_, err := t.Cloud.Autoscaling().PutLifecycleHook(request)
if err != nil {
return err
}
}
return nil
}
type terraformASGLifecycleHook struct {
Name *string `json:"name" cty:"name"`
AutoScalingGroupName *terraformWriter.Literal `json:"autoscaling_group_name" cty:"autoscaling_group_name"`
DefaultResult *string `json:"default_result" cty:"default_result"`
HeartbeatTimeout *int64 `json:"heartbeat_timeout" cty:"heartbeat_timeout"`
LifecycleTransition *string `json:"lifecycle_transition" cty:"lifecycle_transition"`
}
func (_ *AutoscalingLifecycleHook) RenderTerraform(t *terraform.TerraformTarget, a, e, changes *AutoscalingLifecycleHook) error {
tf := &terraformASGLifecycleHook{
Name: e.GetHookName(),
AutoScalingGroupName: e.AutoscalingGroup.TerraformLink(),
DefaultResult: e.DefaultResult,
HeartbeatTimeout: e.HeartbeatTimeout,
LifecycleTransition: e.LifecycleTransition,
}
return t.RenderResource("aws_autoscaling_lifecycle_hook", *e.Name, tf)
}
type cloudformationASGLifecycleHook struct {
LifecycleHookName *string
AutoScalingGroupName *cloudformation.Literal
DefaultResult *string
HeartbeatTimeout *int64
LifecycleTransition *string
}
func (_ *AutoscalingLifecycleHook) RenderCloudformation(t *cloudformation.CloudformationTarget, a, e, changes *AutoscalingLifecycleHook) error {
tf := &cloudformationASGLifecycleHook{
LifecycleHookName: e.GetHookName(),
AutoScalingGroupName: e.AutoscalingGroup.CloudformationLink(),
DefaultResult: e.DefaultResult,
HeartbeatTimeout: e.HeartbeatTimeout,
LifecycleTransition: e.LifecycleTransition,
}
return t.RenderResource("AWS::AutoScaling::LifecycleHook", *e.Name, tf)
}
func (h *AutoscalingLifecycleHook) GetHookName() *string {
if h.HookName != nil {
return h.HookName
}
return h.Name
}