forked from awslabs/amazon-ebs-autoscale
-
Notifications
You must be signed in to change notification settings - Fork 2
/
create-ebs-volume
executable file
·356 lines (302 loc) · 11.7 KB
/
create-ebs-volume
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
#!/bin/bash
# Copyright Amazon.com, Inc. or its affiliates.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
# THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
set -e
. /usr/local/amazon-ebs-autoscale/shared/utils.sh
initialize
USAGE=$(cat <<EOF
Create EBS volume
$0 [options] --size <volume_size_gb>
Required
-s, --size Size of the volume in GB.
Options
-t, --type Type of volume. (Default: gp2)
-i, --iops IOPS for volume. Only valid if type=io1. (Default: 3000)
--not-encrypted Flag to make the volume un-encyrpted. Default is to create
an encrypted volume
--max-total-created-size SIZE_GB
Maximum total size in GB of all volumes created by the instance.
(Default: config.limits.max_logical_volume_size)
--max-attached-volumes N
Maximum number of attached volumes.
(Default: config.limits.max_ebs_volume_count)
--max-created-volumes N
Maximum number of volumes that can be created by the instance.
(Default: MAX_ATTACHED_VOLUMES)
EOF
)
if [ "$#" -lt 1 ]; then
echo "$USAGE"
exit 1
fi
function error() {
logthis "Error: $1"
echo "Error: $1" >&2
exit 1
}
TYPE=$(get_config_value .volume.type)
IOPS=$(get_config_value .volume.iops)
ENCRYPTED=$(get_config_value .volume.encrypted)
MAX_TOTAL_EBS_SIZE=$(get_config_value .limits.max_logical_volume_size)
MAX_ATTACHED_VOLUMES=$(get_config_value .limits.max_ebs_volume_count)
MAX_CREATED_VOLUMES=$MAX_ATTACHED_VOLUMES
# parse options
PARAMS=""
while (( "$#" )); do
case "$1" in
-s|--size)
SIZE=$2
shift 2
;;
-t|--type)
TYPE=$2
shift 2
;;
-i|--iops)
IOPS=$2
shift 2
;;
--not-encrypted)
unset ENCRYPTED
shift
;;
--max-attached-volumes)
MAX_ATTACHED_VOLUMES=$2
shift 2
;;
--max-created-volumes)
MAX_CREATED_VOLUMES=$2
shift 2
;;
--max-total-created-size)
MAX_TOTAL_EBS_SIZE=$2
shift 2
;;
-v|--verbose)
VERBOSE=1
shift
;;
--) # end parsing
shift
break
;;
-*|--*=)
error "unsupported argument $1"
;;
*) # positional arguments
PARAMS="$PARAMS $1"
shift
;;
esac
done
eval set -- "$PARAMS"
if [[ $VEROBSE ]]; then
set -x
fi
if [[ ! "$SIZE" ]]; then
error "missing required argument --size"
fi
alphabet=( {a..z} )
function get_next_logical_device() {
for letter in ${alphabet[@]}; do
# use /dev/xvdb* device names to avoid contention for /dev/sd* and /dev/xvda names
# only supported by HVM instances
if [ ! -b "/dev/xvdb${letter}" ]; then
echo "/dev/xvdb${letter}"
break
fi
done
}
function create_and_attach_volume() {
local instance_id=$(get_metadata instance-id)
local availability_zone=$(get_metadata placement/availability-zone)
local region=${availability_zone%?}
local instance_tags=""
# Render instance tags to match: --tag-specification
# Output Example:
# {Key=Name,Value=Jenkins},{Key=Owner,Value=DevOps}
instance_tags=$(
aws ec2 describe-tags \
--region $region \
--filters "Name=resource-id,Values=$instance_id" | jq -r .Tags | jq -c 'map({Key, Value})' | tr -d '[]"' | sed 's/{Key:/{Key=/g ; s/,Value:/,Value=/g ; s/{Key=aws:[^}]*}//g ; s/,\{2,\}/,/g ; s/,$//g ; s/^,//g'
)
local max_attempts=10
local attached_volumes=""
for i in $(eval echo "{0..$max_attempts}") ; do
attached_volumes=$(
aws ec2 describe-volumes \
--region $region \
--filters "Name=attachment.instance-id,Values=$instance_id"
)
if [ $? -eq 0 ]; then
break
elif [ $i -eq $max_attempts ]; then
logthis "Could not determine the number of attached_volumes after $i attempts. Last response was: $attached_volumes"
break
fi
sleep $(( 2 ** i + $RANDOM % 3))
done
local created_volumes=""
for i in $(eval echo "{0..$max_attempts}") ; do
created_volumes=$(
aws ec2 describe-volumes \
--region $region \
--filters "Name=tag:source-instance,Values=$instance_id"
)
if [ $? -eq 0 ]; then
break
elif [ $i -eq $max_attempts ]; then
logthis "Could not determine the number of created_volumes after $i attempts. Last response was: $created_volumes"
break
fi
sleep $(( 2 ** i + $RANDOM % 3))
done
local total_created_size=""
for i in $(eval echo "{0..$max_attempts}") ; do
total_created_size=$(
aws ec2 describe-volumes \
--region $region \
--filters "Name=tag:source-instance,Values=$instance_id" \
--query 'sum(Volumes[].Size)' \
--output text
)
if [ $? -eq 0 ]; then
break
elif [ $i -eq $max_attempts ]; then
logthis "Could not determine the total_created_size after $i attempts. Last response was: $total_created_size"
break
fi
sleep $(( 2 ** i + $RANDOM % 3))
done
# check how much EBS storage this instance has created
if [ "$total_created_size" -ge "$MAX_TOTAL_EBS_SIZE" ]; then
error "maximum total ebs volume size reached ($MAX_TOTAL_EBS_SIZE)"
fi
# check how many volumes this instance has created
if [ "`echo $created_volumes | jq '.Volumes | length'`" -ge "$MAX_CREATED_VOLUMES" ]; then
error "maximum number of created volumes reached ($MAX_CREATED_VOLUMES)"
fi
# check how many volumes are currently attached
if [ "`echo $attached_volumes | jq '.Volumes | length'`" -ge "$MAX_ATTACHED_VOLUMES" ]; then
error "maximum number of attached volumes reached ($MAX_ATTACHED_VOLUMES)"
fi
# check if there are available device names
local device=$(get_next_logical_device)
if [ -z "$device" ]; then
error "no device names available for volume"
fi
logthis "next available device: $device"
# create the volume
local tmpfile=$(mktemp /tmp/ebs-autoscale.create-volume.XXXXXXXXXX)
local volume_opts="--size $SIZE --volume-type $TYPE"
if [ "$TYPE" == "io1" ]; then volume_opts="$volume_opts --iops $IOPS"; fi
if [ "$ENCRYPTED" == "1" ]; then volume_opts="$volume_opts --encrypted"; fi
local timestamp=$(date "+%F %T UTC%z") # YYYY-mm-dd HH:MM:SS UTC+0000
local volume=""
for i in $(eval echo "{0..$max_attempts}") ; do
# The $instance_tags variable could be empty and will cause a TagSpecifications[0].Tags[0] error if
# it is passed as an empty value because it must be comma-separated from the other key-value pairs.
# Use a Shell Parameter Expansion to determine if the variable contains a value or not. If it has a value,
# append a comma at the end so the aws cli syntax is compliant when it is subbed into the tag_specification variable.
local instance_tags=${instance_tags:+${instance_tags},}
local tag_specification="ResourceType=volume,Tags=[$instance_tags{Key=source-instance,Value=$instance_id},{Key=amazon-ebs-autoscale-creation-time,Value=$timestamp}]"
# Note: Shellcheck says the $vars in this command should be double quoted to prevent globbing and word-splitting,
# but this ends up making the '--encrypted' argument to fail during the execution of the install script. Conversely, NOT putting double-quotes
# around $tag_specification causes a parsing error due to the space in the $timestamp value (added to $tag_specification above).
local volume=$(\
aws ec2 create-volume \
--region $region \
--availability-zone $availability_zone \
$volume_opts \
--tag-specification "$tag_specification" \
2> $tmpfile
)
if [ $? -eq 0 ]; then
break
elif [ $i -eq $max_attempts ]; then
logthis "Could not create a volume after $i attempts. Last response was: $volume"
break
fi
sleep $(( 2 ** i + $RANDOM % 3))
done
local volume_id=`echo $volume | jq -r '.VolumeId'`
if [ -z "$volume_id" ]; then
logthis "$(cat $tmpfile)" # log captured error
cat $tmpfile # print captured error (e.g. when called during install)
rm $tmpfile
error "could not create volume"
fi
rm $tmpfile
logthis "created volume: $volume_id [ $volume_opts ]"
# In theory this shouldn't need to loop as aws ec2 wait will retry but I have seen it exceed request limits
for i in {1..3} ; do
if aws ec2 wait volume-available --region $region --volume-ids $volume_id; then
logthis "volume $volume_id available"
break
fi
done
# Need to assure that the created volume is successfully attached to be
# cost efficient. If attachment fails, delete the volume.
set +e
logthis "attaching volume $volume_id"
sleep 1
aws ec2 attach-volume \
--region $region \
--device $device \
--instance-id $instance_id \
--volume-id $volume_id \
> /dev/null
status="$?"
if [ ! "$status" -eq 0 ]; then
logthis "deleting volume $volume_id"
aws ec2 delete-volume \
--region $region \
--volume-id $volume_id \
> /dev/null
error "could not attach volume to instance"
fi
set -e
logthis "waiting for volume $volume_id on filesystem"
while true; do
if [ -e "$device" ]; then
logthis "volume $volume_id on filesystem as $device"
break
fi
sleep 1
done
# set volume delete on termination
aws ec2 modify-instance-attribute \
--region $region \
--instance-id $instance_id \
--block-device-mappings "DeviceName=$device,Ebs={DeleteOnTermination=true,VolumeId=$volume_id}" \
> /dev/null
logthis "volume $volume_id DeleteOnTermination ENABLED"
echo $device
}
create_and_attach_volume