-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathresize-ebs-disks.sh
executable file
·38 lines (29 loc) · 1.23 KB
/
resize-ebs-disks.sh
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
#!/usr/bin/env bash
set -euo pipefail
USAGE="Usage: $0 TARGET_SIZE_GB node1 [node2 ... nodeN]"
if [ $# -lt 2 ]; then
echo "$USAGE"
exit 1
fi
TARGET_SIZE="$1"; shift
TARGET_NODES=("$@")
cd "$(dirname "$0")/.."
DEPLOY_JSON=$(nixops export -d "$NIXOPS_DEPLOYMENT")
for r in "${TARGET_NODES[@]}"; do
AWS_PROFILE=$(jq -r ".[].resources.\"$r\".\"ec2.accessKeyId\"" <<< "$DEPLOY_JSON")
REGION=$(jq -r ".[].resources.\"$r\".\"ec2.region\"" <<< "$DEPLOY_JSON")
VOL_ID=$( (jq -r ".[].resources.\"$r\".\"ec2.blockDeviceMapping\"" | jq -r ".\"/dev/xvda\".volumeId") <<< "$DEPLOY_JSON")
echo "resizing root volume for $r (profile: $AWS_PROFILE region: $REGION volume: $VOL_ID)"
export AWS_PROFILE
aws --region "$REGION" ec2 modify-volume --size "$TARGET_SIZE" --volume-id "$VOL_ID"
done
echo "Waiting 30 seconds for the new block device size to be recognized on the targets..."
sleep 30
# Grow the partition, grow the fs, and symlink /dev/xvda if not present to satisfy legacy nixops
nixops ssh-for-each -p --include "${TARGET_NODES[@]}" -- '
nix-shell -p cloud-utils --run " \
{ growpart /dev/xvda 1 || growpart /dev/nvme0n1 2; } \
&& resize2fs /dev/disk/by-label/nixos \
&& { [ -e /dev/xvda ] || ln -s /dev/nvme0n1 /dev/xvda; } \
"
'