スポンサーリンク
こんにちは。湖山です。
Cloud9を構築時にディスクサイズ指定できたらいいのですが、デフォルト10GB固定なんですよね。
これではDockerコンテナ起動時に空き容量0でエラーになります。
そのため自分でディスクサイズを拡張する必要があります。
今回はスクリプトを使用して一発でディスクサイズを拡張する手順です。
Cloud9のディスクサイズの確認
df コマンドで現在のディスクサイズを確認します。
$ df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 475M 0 475M 0% /dev
tmpfs 492M 0 492M 0% /dev/shm
tmpfs 492M 460K 491M 1% /run
tmpfs 492M 0 492M 0% /sys/fs/cgroup
/dev/xvda1 10G 8.1G 2.0G 81% /
tmpfs 99M 0 99M 0% /run/user/1000
Cloud9を構築した直後でもディスクサイズ10GBの内、約8GBほどを使用している状態。
Cloud9のディスクサイズの拡張
Cloud9環境下で、拡張子 .sh
(例えば resize.sh
)のファイル作成します。
スクリプト内の処理は以下の通りです。(そのままコピペでOK)
#!/bin/bash
# Specify the desired volume size in GiB as a command line argument. If not specified, default to 20 GiB.
SIZE=${1:-20}
# Get the ID of the environment host Amazon EC2 instance.
INSTANCEID=$(curl http://169.254.169.254/latest/meta-data/instance-id)
REGION=$(curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone | sed 's/\(.*\)[a-z]/\1/')
# Get the ID of the Amazon EBS volume associated with the instance.
VOLUMEID=$(aws ec2 describe-instances \
--instance-id $INSTANCEID \
--query "Reservations[0].Instances[0].BlockDeviceMappings[0].Ebs.VolumeId" \
--output text \
--region $REGION)
# Resize the EBS volume.
aws ec2 modify-volume --volume-id $VOLUMEID --size $SIZE
# Wait for the resize to finish.
while [ \
"$(aws ec2 describe-volumes-modifications \
--volume-id $VOLUMEID \
--filters Name=modification-state,Values="optimizing","completed" \
--query "length(VolumesModifications)"\
--output text)" != "1" ]; do
sleep 1
done
#Check if we're on an NVMe filesystem
if [[ -e "/dev/xvda" && $(readlink -f /dev/xvda) = "/dev/xvda" ]]
then
# Rewrite the partition table so that the partition takes up all the space that it can.
sudo growpart /dev/xvda 1
# Expand the size of the file system.
# Check if we're on AL2
STR=$(cat /etc/os-release)
SUB="VERSION_ID=\"2\""
if [[ "$STR" == *"$SUB"* ]]
then
sudo xfs_growfs -d /
else
sudo resize2fs /dev/xvda1
fi
else
# Rewrite the partition table so that the partition takes up all the space that it can.
sudo growpart /dev/nvme0n1 1
# Expand the size of the file system.
# Check if we're on AL2
STR=$(cat /etc/os-release)
SUB="VERSION_ID=\"2\""
if [[ "$STR" == *"$SUB"* ]]
then
sudo xfs_growfs -d /
else
sudo resize2fs /dev/nvme0n1p1
fi
fi
引数にボリュームのリサイズとして希望するGib単位のサイズを指定して、コマンド実行します。
以下のコマンドでは20Gibにディスクサイズを拡張します。
$ bash resize.sh 20
正常に処理が完了したら、再度 df コマンドで確認してみます。
$ df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 475M 0 475M 0% /dev
tmpfs 492M 0 492M 0% /dev/shm
tmpfs 492M 460K 491M 1% /run
tmpfs 492M 0 492M 0% /sys/fs/cgroup
/dev/xvda1 20G 8.0G 12G 41% /
tmpfs 99M 0 99M 0% /run/user/1000
参考
■(AWS公式ドキュメント) 環境で使用されている Amazon EBS ボリュームのサイズ変更
https://docs.aws.amazon.com/ja_jp/cloud9/latest/user-guide/move-environment.html#move-environment-resize
スポンサーリンク