1. AutoScalingグループの更新 (desired capacity: as-handson-cli-maint-psql)¶
作業の目的 [why]¶
AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityを変更します。
完了条件/事前条件 [設計者用情報]
完了条件 [after]
主処理は、以下を満たしたときに成功したものとします。
- 完了条件1
- AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっている。
事前条件 [before]
主処理の実施は、以下の状態であることを前提とします。
- 事前条件1
- AutoScalingグループ"as-handson-cli-maint-psql"が存在する。
- 事前条件2
- AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっていない。
前提と異なることが判明した場合、直ちに処理を中止します。
作業対象 [what]¶
- AutoScalingグループ
標準時間(合計)¶
8分
パラメータ設定¶
パラメータ設定の標準時間: | 2分 |
---|
作業に必要なモノ・情報 [resource]¶
作業開始には、以下が全て揃っていることが必要です。
リソース1: AutoScalingグループ名
- 作成するAutoScalingグループの名称です。
- 今回は"as-handson-cli-maint-psql"とします。
リソース2: AutoScalingグループで稼動させたいインスタンス数
- 作成するAutoScalingグループで稼動させたいインスタンス数です。
- 今回は"1"とします。
パラメータの指定¶
作業に必要なパラメータを変数に格納をします。
0.2. AutoScalingグループで稼動させたいインスタンス数¶
AutoScalingグループで稼動させたいインスタンス数を指定します。
変数の設定:
AS_GROUP_DESIRED='1'
パラメータの保存¶
設定されている変数の保存先となるファイル名を指定します。
変数の設定:
DIR_PARAMETER="${HOME}/tmp/parameter-handson-cli" FILE_PARAMETER="${DIR_PARAMETER}/$(date +%Y-%m-%d)-autoscaling-auto_scaling_group-update.env" \ && echo ${FILE_PARAMETER}
結果(例):
${HOME}/tmp/parameter-handson-cli/2019-04-30-autoscaling-auto_scaling_group-update.env
各変数に正しいパラメータ値が格納されていることを確認しながら保存します。
変数の確認:
cat << EOF > ${FILE_PARAMETER} # 0.0. AWS_DEFAULT_REGION:"<リージョン名>" AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION}" # 0.1. AS_GROUP_NAME:"as-handson-cli-maint-psql" AS_GROUP_NAME="${AS_GROUP_NAME}" # 0.2. AS_GROUP_DESIRED:"1" AS_GROUP_DESIRED="${AS_GROUP_DESIRED}" EOF cat ${FILE_PARAMETER}
下段の変数が入っていない、もしくは上段と同等の値が入っていない場合は、それぞれの手順番号に戻って変数の設定を行います。
タスクの実施¶
タスク標準時間: | 6分 |
---|
1. 前処理¶
処理対象の状態確認¶
主処理の実施は、以下の状態であることを前提とします。
前提と異なることが判明した場合、直ちに処理を中止します。
事前条件1: AutoScalingグループ"as-handson-cli-maint-psql"が存在する。
「AutoScalingグループ"as-handson-cli-maint-psql"が存在する。」ことを確認します。
コマンド:
aws autoscaling describe-auto-scaling-groups \ --auto-scaling-group-names ${AS_GROUP_NAME} \ --query 'AutoScalingGroups[].AutoScalingGroupName' \ --output text
結果(例):
as-handson-cli-maint-psql
事前条件2: AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっていない。
「AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっていない。」ことを確認します。
コマンド:
aws autoscaling describe-auto-scaling-groups \ --auto-scaling-group-names ${AS_GROUP_NAME} \ --query 'AutoScalingGroups[].DesiredCapacity' \ --output text
結果(例):
0
2. 主処理¶
AutoScalingグループの更新¶
変数の確認:
cat << ETX # AS_GROUP_NAME:"as-handson-cli-maint-psql" AS_GROUP_NAME="${AS_GROUP_NAME}" # AS_GROUP_DESIRED:"1" AS_GROUP_DESIRED="${AS_GROUP_DESIRED}" ETX
コマンド:
aws autoscaling update-auto-scaling-group \ --auto-scaling-group-name ${AS_GROUP_NAME} \ --desired-capacity ${AS_GROUP_DESIRED}
結果(例):
(戻り値なし)
3. 後処理¶
完了条件の確認¶
主処理は、以下を満たしたときに成功したものとします。
完了条件1: AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっている。
「AutoScalingグループ"as-handson-cli-maint-psql"のdesired capacityが"1"になっている。」ことを確認します。
コマンド:
aws autoscaling describe-auto-scaling-groups \ --auto-scaling-group-names ${AS_GROUP_NAME} \ --query 'AutoScalingGroups[].DesiredCapacity' \ --output text
結果(例):
1