如何指定根实例存储的卷大小?
How to specify the volume size of the root instance storage?
我当前使用的用于请求 Spot 实例的 AWS CLI 命令如下所示:
aws ec2 request-spot-instances \
--region eu-west-1 \
--spot-price 0.1 \
--launch-specification "{ \
\"KeyName\": \"aws\", \
\"ImageId\": \"$IMGID_DIGITS\", \
\"InstanceType\": \"g2.2xlarge\" , \
\"SecurityGroupIds\": [\"$SGID\"] \
}"
如何/在哪里将根实例存储的大小指定为 16 GB 而不是通常的 8 GB?
我会看看 BlockDeviceMappings.Ebs.VolumeSize
。
参考:http://docs.aws.amazon.com/cli/latest/reference/ec2/request-spot-instances.html
我当前使用的用于请求 Spot 实例的 AWS CLI 命令如下所示:
aws ec2 request-spot-instances \
--region eu-west-1 \
--spot-price 0.1 \
--launch-specification "{ \
\"KeyName\": \"aws\", \
\"ImageId\": \"$IMGID_DIGITS\", \
\"InstanceType\": \"g2.2xlarge\" , \
\"SecurityGroupIds\": [\"$SGID\"] \
}"
如何/在哪里将根实例存储的大小指定为 16 GB 而不是通常的 8 GB?
我会看看 BlockDeviceMappings.Ebs.VolumeSize
。
参考:http://docs.aws.amazon.com/cli/latest/reference/ec2/request-spot-instances.html