-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathblock_device_mappings.go
189 lines (167 loc) · 6.15 KB
/
block_device_mappings.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
/*
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 (
"k8s.io/kops/upup/pkg/fi"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/aws/aws-sdk-go/service/ec2"
)
// BlockDeviceMapping defines the specification for a device mapping
type BlockDeviceMapping struct {
// DeviceName is the device name of the EBS
DeviceName *string
// EbsDeleteOnTermination indicates the volume should be delete on instance termination
EbsDeleteOnTermination *bool
// EbsEncrypted indicates the volume should be encrypted
EbsEncrypted *bool
// EbsKmsKey is the encryption key identifier for the volume
EbsKmsKey *string
// EbsVolumeIops is the provisioned iops for the volume
EbsVolumeIops *int64
// EbsVolumeThroughput is the throughput for the volume
EbsVolumeThroughput *int64
// EbsVolumeSize is the size of the volume
EbsVolumeSize *int64
// EbsVolumeType is the aws volume type
EbsVolumeType *string
// VirtualName is the device name
VirtualName *string
}
// BlockDeviceMappingFromEC2 converts a e2c block mapping to internal block device mapping
func BlockDeviceMappingFromEC2(i *ec2.BlockDeviceMapping) (string, *BlockDeviceMapping) {
o := &BlockDeviceMapping{
DeviceName: i.DeviceName,
VirtualName: i.VirtualName,
}
if i.Ebs != nil {
o.EbsDeleteOnTermination = i.Ebs.DeleteOnTermination
o.EbsEncrypted = i.Ebs.Encrypted
o.EbsKmsKey = i.Ebs.KmsKeyId
o.EbsVolumeIops = i.Ebs.Iops
o.EbsVolumeThroughput = i.Ebs.Throughput
o.EbsVolumeSize = i.Ebs.VolumeSize
o.EbsVolumeType = i.Ebs.VolumeType
}
return aws.StringValue(i.DeviceName), o
}
// ToEC2 creates and returns an ec2 block mapping
func (i *BlockDeviceMapping) ToEC2(deviceName string) *ec2.BlockDeviceMapping {
o := &ec2.BlockDeviceMapping{
DeviceName: aws.String(deviceName),
VirtualName: i.VirtualName,
}
if i.EbsDeleteOnTermination != nil || i.EbsVolumeSize != nil || i.EbsVolumeType != nil || i.EbsEncrypted != nil {
o.Ebs = &ec2.EbsBlockDevice{
DeleteOnTermination: i.EbsDeleteOnTermination,
Encrypted: i.EbsEncrypted,
VolumeSize: i.EbsVolumeSize,
VolumeType: i.EbsVolumeType,
}
switch fi.StringValue(i.EbsVolumeType) {
case ec2.VolumeTypeGp3:
o.Ebs.Throughput = i.EbsVolumeThroughput
fallthrough
case ec2.VolumeTypeIo1, ec2.VolumeTypeIo2:
o.Ebs.Iops = i.EbsVolumeIops
}
if fi.BoolValue(o.Ebs.Encrypted) {
o.Ebs.KmsKeyId = i.EbsKmsKey
}
}
return o
}
// BlockDeviceMappingFromAutoscaling converts an autoscaling block mapping to internal spec
func BlockDeviceMappingFromAutoscaling(i *autoscaling.BlockDeviceMapping) (string, *BlockDeviceMapping) {
o := &BlockDeviceMapping{
DeviceName: i.DeviceName,
VirtualName: i.VirtualName,
}
if i.Ebs != nil {
o.EbsDeleteOnTermination = i.Ebs.DeleteOnTermination
o.EbsEncrypted = i.Ebs.Encrypted
o.EbsVolumeSize = i.Ebs.VolumeSize
o.EbsVolumeType = i.Ebs.VolumeType
if fi.StringValue(o.EbsVolumeType) == ec2.VolumeTypeIo1 || fi.StringValue(o.EbsVolumeType) == ec2.VolumeTypeIo2 {
o.EbsVolumeIops = i.Ebs.Iops
}
}
return aws.StringValue(i.DeviceName), o
}
// ToAutoscaling converts the internal block mapping to autoscaling
func (i *BlockDeviceMapping) ToAutoscaling(deviceName string) *autoscaling.BlockDeviceMapping {
o := &autoscaling.BlockDeviceMapping{
DeviceName: aws.String(deviceName),
VirtualName: i.VirtualName,
}
if i.EbsDeleteOnTermination != nil || i.EbsVolumeSize != nil || i.EbsVolumeType != nil {
o.Ebs = &autoscaling.Ebs{
DeleteOnTermination: i.EbsDeleteOnTermination,
Encrypted: i.EbsEncrypted,
VolumeSize: i.EbsVolumeSize,
VolumeType: i.EbsVolumeType,
}
if fi.StringValue(o.Ebs.VolumeType) == ec2.VolumeTypeIo1 || fi.StringValue(o.Ebs.VolumeType) == ec2.VolumeTypeIo2 {
o.Ebs.Iops = i.EbsVolumeIops
}
}
return o
}
// BlockDeviceMappingFromLaunchTemplateBootDeviceRequest coverts the launch template device mappings to an interval block device mapping
func BlockDeviceMappingFromLaunchTemplateBootDeviceRequest(i *ec2.LaunchTemplateBlockDeviceMapping) (string, *BlockDeviceMapping) {
o := &BlockDeviceMapping{
DeviceName: i.DeviceName,
VirtualName: i.VirtualName,
}
if i.Ebs != nil {
o.EbsDeleteOnTermination = i.Ebs.DeleteOnTermination
o.EbsVolumeSize = i.Ebs.VolumeSize
o.EbsVolumeType = i.Ebs.VolumeType
o.EbsVolumeIops = i.Ebs.Iops
o.EbsVolumeThroughput = i.Ebs.Throughput
o.EbsEncrypted = i.Ebs.Encrypted
o.EbsKmsKey = i.Ebs.KmsKeyId
}
return aws.StringValue(i.DeviceName), o
}
// ToLaunchTemplateBootDeviceRequest coverts in the internal block device mapping to a launch template request
func (i *BlockDeviceMapping) ToLaunchTemplateBootDeviceRequest(deviceName string) *ec2.LaunchTemplateBlockDeviceMappingRequest {
o := &ec2.LaunchTemplateBlockDeviceMappingRequest{
DeviceName: aws.String(deviceName),
VirtualName: i.VirtualName,
}
if i.EbsDeleteOnTermination != nil || i.EbsVolumeSize != nil || i.EbsVolumeType != nil || i.EbsEncrypted != nil {
o.Ebs = &ec2.LaunchTemplateEbsBlockDeviceRequest{
DeleteOnTermination: i.EbsDeleteOnTermination,
Encrypted: i.EbsEncrypted,
VolumeSize: i.EbsVolumeSize,
VolumeType: i.EbsVolumeType,
}
}
switch fi.StringValue(i.EbsVolumeType) {
case ec2.VolumeTypeGp3:
o.Ebs.Throughput = i.EbsVolumeThroughput
fallthrough
case ec2.VolumeTypeIo1, ec2.VolumeTypeIo2:
o.Ebs.Iops = i.EbsVolumeIops
}
if fi.BoolValue(i.EbsEncrypted) {
o.Ebs.KmsKeyId = i.EbsKmsKey
}
return o
}
var _ fi.HasDependencies = &BlockDeviceMapping{}
// GetDependencies is for future use
func (i *BlockDeviceMapping) GetDependencies(tasks map[string]fi.Task) []fi.Task {
return nil
}